Atrix 2 Bootloop/ Fastboot error - Motorola Atrix 2

Hello everybody, i bought the edison just a week ago...it came with the stock indian 2.3.6 rom and i decided to root and install cwm on it...using the lazyoneclick method, i was able to root and get cwm successfully..however when i flashed the Supercharged Atrix v5...i went into a bootloop...i read the forum and saw that fastbooting with rsd lite was the best way out...and i tried...i downloaded the fastboot files and the replacement archive for 2.3.6 but i got an error in step 3 while fastbooting...
i opened the xml file and deleted the following 4 lines..
<step operation="flash" partition="mbm" filename="allow-mbmloader-flashing-mbm.bin" MD5="2F5211B8011CBA58290D7B51B56F8DFB" />
<step operation="reboot-bootloader" />
<step operation="flash" partition="mbmloader" filename="mbmloader.bin" MD5="9D1958ED3F5E971FF079B195E338BA86" />
<step operation="flash" partition="mbm" filename="mbm.bin" MD5="DA1A78B87D8FE6D8DA6DE7CA2C5B0A7E" />
and i could successfullyfastboot into at and t stock 2.3.5!!!!

Flash using using the Indian Firmware version, not the ATT version. Here is the link to the list of firmwares
http://sbf.droid-developers.org/edison/list.php
Download the file called "5.5.1-EDEM-27-SEARET_cfc.xml.zip"

strange i couldn't find this link when i needed them desperately!! i was in a bootloop for over 4 hours and ijust bought the phone like 4 days ago the cold sweat!!!!! :O

Related

[Q] Vending mod issue

So I modifed the vending.apk by changing some of the colors in the xml and by theming some of the png files. I recompiled it and everything compiled fine. I signed it and then flashed it and it said that it installed yet when it boots up I still have the old marketplace. Any help would be appreciated. I have the file attached.
Did you replace it in /system/app?
freeza said:
Did you replace it in /system/app?
Click to expand...
Click to collapse
I used the same install script that I used on the Gmail that I modified and it installed correctly.
If google has updated the market, it may be in data/app and is using thst one instead
freeza said:
If google has updated the market, it may be in data/app and is using thst one instead
Click to expand...
Click to collapse
No it is in system/app...looks like I got it to install...I just need to do more modifications to it.
In the public.xml is has lines like this
<public type="color" name="header_background_highdarkTransparent1" id="0x7f090029" />
<public type="color" name="header_background_highdark2" id="0x7f09002a" />
<public type="color" name="light_foreground" id="0x7f09002b" />
<public type="color" name="black" id="0x7f09002c" />
<public type="color" name="white" id="0x7f09002d" />
<public type="color" name="header_text" id="0x7f09002e" />
What does id="0x7f09002e mean? is that a color? I do not recognize that as a color.
So no one can tell me what the above means?

[GUIDE] Make Google Camera save at 100% Quality (4 MB) photos [TW][AOSP][ALL PHONES]

Introduction
Google Camera uses media_profiles.xml file where the Image quality is never set to 100 except if you're using a custom ROM where it is set by the ROM developer.
As a consequence, Google Camera and maybe other camera apps that works similarly, saves photos at around 600 kb in Galaxy S4. This is a lot of compression and may disappoint users who prefer the Google Goodie.
All thanks to @Alberto96 who brought this into light in his amazing ROM GearCM (Don't forget to thank him :highfive: )
Note: ROOT is Required
The Guide
Head on to system/etc and get the file "media_profiles.xml". You can back it up for your convenience.
You can use a PC for quick Find and Replace.
Open the file via an editor and find the code:
Code:
<ImageEncoding quality="90" />
<ImageEncoding quality="80" />
<ImageEncoding quality="70" />
(Tip: just search "ImageEncoding" and you'll get right there as the quality values can be different)
You'll find this three line code at two places and will be similar at both the places.
All you have to do is make it like this:
Code:
<ImageEncoding quality="100" />
<ImageEncoding quality="95" />
<ImageEncoding quality="90" />
Change to this code at both the places and save it. Then obviously put this file and replace it with original one at system/etc
Make sure and check if the permissions are rw-r--r--
Reboot and Enjoy taking Full Quality and Uncompressed photos from Google Camera :victory:
Don't forget to press Thanks button if you find this useful
Source: @Alberto96 's Github commit (https://github.com/GearCM/android_d...mmit/ba2f5d83665197b17bc68b9480986430e5d7ef3a)
All credits goes to him :angel:
thank for this TUT i really hate to use google camera for it quality in AOSP and CM rom but next time i diffidently use it when install AOSP or CM rom

Samsung S6 FACTORY Bootloader Unlocker apk and source

Got a hold of the Samsung CROM Service apk that unlocks the S6 SM-G9250 bootloader and I've decompiled it, I'll be honest, it's been years since I've looked at this stuff. The file is distributed by Samsung for the Chinese market It's been verified to install on American Devices but force closes immediately. I figure it's failing a version check or something along those lines.
I can pass it along if anyone wants to take a crack at it. I'll be muddling along on my end but my primary interest is in the results - not the credit.
Anyone interested?
Edit: I have TWO versions of the file,version 1.04 android:versionCode="20150408" and
version 1.01 android:versionCode="20141126", which I've attached below.
-----
Contents of S6 CROM Android Manifest xml file:
<?xml version="1.0" encoding="utf-8"?>
<manifest android:sharedUserId="android.uid.system" android:versionCode="20150408" android:versionName="1.0.4" package="com.sec.android.app.kwb"
xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> />
<uses-library android:name="kwb" />
<application android:theme="@style/SettingsTheme" android:label="@string/app_name" android:icon="@drawable/custom_rom" android:allowBackup="true">
<activity android:theme="@style/SettingsTheme" android:label="@string/app_name" android:name="com.sec.android.app.kwb.KwbLaunchActivity" android:configChanges="keyboardHidden|orientation">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data android:name="SPDE.build.signature" android:value="424919/737923/release" />
<meta-data android:name="SPDE.env.version" android:value="0.12.2/19.1.8/19.2.12" />
</application>
</manifest>
The.Jericho.Initiative said:
Got a hold of the Samsung CROM Service apk that unlocks the S6 SM-G9250 bootloader and I've decompiled it, I'll be honest, it's been years since I've looked at this stuff. The file is distributed by Samsung for the Chinese market It's been verified to install on American Devices but force closes immediately. I figure it's failing a version check or something along those lines.
I can pass it along if anyone wants to take a crack at it. I'll be muddling along on my end but my primary interest is in the results - not the credit.
Anyone interested?
Edit:
-----
Contents of Android Manifest xml file:
<?xml version="1.0" encoding="utf-8"?>
<manifest android:sharedUserId="android.uid.system" android:versionCode="20150408" android:versionName="1.0.4" package="com.sec.android.app.kwb"
xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> />
<uses-library android:name="kwb" />
<application android:theme="@style/SettingsTheme" android:label="@string/app_name" android:icon="@drawable/custom_rom" android:allowBackup="true">
<activity android:theme="@style/SettingsTheme" android:label="@string/app_name" android:name="com.sec.android.app.kwb.KwbLaunchActivity" android:configChanges="keyboardHidden|orientation">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data android:name="SPDE.build.signature" android:value="424919/737923/release" />
<meta-data android:name="SPDE.env.version" android:value="0.12.2/19.1.8/19.2.12" />
</application>
</manifest>
Click to expand...
Click to collapse
You can post the apk and wait for anyone crack it, you will receive the proper credit
Redundant post. Copied file into OP...
Redundant post. Copied file into OP...
The.Jericho.Initiative said:
Interestingly I came across a second version. The manifest of the first I posted said version 1.04 android:versionCode="20150408"
The manifest of the second reads version 1.01 android:versionCode="20141126" I've attached the second apk to this message
Click to expand...
Click to collapse
odd. on my galaxy tab s 10.5 (T807v) it opens up to the message that talks about unlocking device then fcs.. on my vzw s6 edge it fcs right away
Sent from my SM-G925V using XDA Free mobile app
---------- Post added at 06:57 PM ---------- Previous post was at 06:51 PM ----------
elliwigy said:
odd. on my galaxy tab s 10.5 (T807v) it opens up to the message that talks about unlocking device then fcs.. on my vzw s6 edge it fcs right away
Sent from my SM-G925V using XDA Free mobile app
Click to expand...
Click to collapse
also, the second apk has a lib file.. libkwb.so
Sent from my SM-G925V using XDA Free mobile app
heres where i get on my tablet...
Sent from my SM-T807V using XDA Free mobile app
s6-CROM.apk is missing /libs/libkwb.so
Code:
04-20 10:40:09.461: I/LoadedApk(19562): getClassLoader :dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.sec.android.app.kwb-1/base.apk"],nativeLibraryDirectories=[/vendor/lib64, /system/lib64]]]
04-20 10:40:09.461: I/LoadedApk(19562): getClassLoader :dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.sec.android.app.kwb-1/base.apk"],nativeLibraryDirectories=[/vendor/lib64, /system/lib64]]]
04-20 10:40:09.471: D/Activity(19562): performCreate Call Injection manager
04-20 10:40:09.481: I/InjectionManager(19562): dispatchOnViewCreated > Target : com.sec.android.app.kwb.KwbLaunchActivity isFragment :false
04-20 10:40:09.481: D/KwbLaunchActivity(19562): onResume called
04-20 10:40:09.481: D/LibKwb(19562): WARNING: Could not load /libs/libkwb.so
04-20 10:40:09.481: D/LibKwb(19562): java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.sec.android.app.kwb-1/base.apk"],nativeLibraryDirectories=[/vendor/lib64, /system/lib64]]] couldn't find "libkwb.so"
04-20 10:40:09.481: E/art(19562): No implementation found for int com.sec.android.lib.kwb.LibKwb.getCustomBinStatusFlag() (tried Java_com_sec_android_lib_kwb_LibKwb_getCustomBinStatusFlag and Java_com_sec_android_lib_kwb_LibKwb_getCustomBinStatusFlag__)
edit:
Added the that in, now it has unmet dependencies
Code:
04-20 11:32:14.231: E/art(24783): dlopen("/data/app/com.sec.android.app.kwb-1/lib/arm/libkwb.so", RTLD_LAZY) failed: dlopen failed: could not load library "libQSEEComAPI.so" needed by "libkwb.so"; caused by library "libQSEEComAPI.so" not found
edit:
Added in libQSEEComAPI.so and the app fires up and you can get thru all of the prompts, but then it crashes because I had to remove the shareduser so it would install, basically it has no permissions. We need to be able to load the two dependencies without modifying the apk because we can't resign the apk with the same signing key that it was originally signed with.
If someone could test this on an S6 that has root and load the two .so files we could do some more testing.
designgears said:
s6-CROM.apk is missing /libs/libkwb.so
Code:
04-20 10:40:09.461: I/LoadedApk(19562): getClassLoader :dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.sec.android.app.kwb-1/base.apk"],nativeLibraryDirectories=[/vendor/lib64, /system/lib64]]]
04-20 10:40:09.461: I/LoadedApk(19562): getClassLoader :dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.sec.android.app.kwb-1/base.apk"],nativeLibraryDirectories=[/vendor/lib64, /system/lib64]]]
04-20 10:40:09.471: D/Activity(19562): performCreate Call Injection manager
04-20 10:40:09.481: I/InjectionManager(19562): dispatchOnViewCreated > Target : com.sec.android.app.kwb.KwbLaunchActivity isFragment :false
04-20 10:40:09.481: D/KwbLaunchActivity(19562): onResume called
04-20 10:40:09.481: D/LibKwb(19562): WARNING: Could not load /libs/libkwb.so
04-20 10:40:09.481: D/LibKwb(19562): java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.sec.android.app.kwb-1/base.apk"],nativeLibraryDirectories=[/vendor/lib64, /system/lib64]]] couldn't find "libkwb.so"
04-20 10:40:09.481: E/art(19562): No implementation found for int com.sec.android.lib.kwb.LibKwb.getCustomBinStatusFlag() (tried Java_com_sec_android_lib_kwb_LibKwb_getCustomBinStatusFlag and Java_com_sec_android_lib_kwb_LibKwb_getCustomBinStatusFlag__)
edit:
Added the that in, now it has unmet dependencies
Code:
04-20 11:32:14.231: E/art(24783): dlopen("/data/app/com.sec.android.app.kwb-1/lib/arm/libkwb.so", RTLD_LAZY) failed: dlopen failed: could not load library "libQSEEComAPI.so" needed by "libkwb.so"; caused by library "libQSEEComAPI.so" not found
edit:
Added in libQSEEComAPI.so and the app fires up and you can get thru all of the prompts, but then it crashes because I had to remove the shareduser so it would install, basically it has no permissions. We need to be able to load the two dependencies without modifying the apk because we can't resign the apk with the same signing key that it was originally signed with.
If someone could test this on an S6 that has root and load the two .so files we could do some more testing.
Click to expand...
Click to collapse
do you have the two files? i am not sure where to locate the libqsee file.. i know it doesnt work but i am trying to learn and would like to see what you did lol
Sent from my SM-T807V using XDA Free mobile app
designgears said:
s6-CROM.apk is missing /libs/libkwb.so
Code:
04-20 10:40:09.461: I/LoadedApk(19562): getClassLoader :dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.sec.android.app.kwb-1/base.apk"],nativeLibraryDirectories=[/vendor/lib64, /system/lib64]]]
04-20 10:40:09.461: I/LoadedApk(19562): getClassLoader :dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.sec.android.app.kwb-1/base.apk"],nativeLibraryDirectories=[/vendor/lib64, /system/lib64]]]
04-20 10:40:09.471: D/Activity(19562): performCreate Call Injection manager
04-20 10:40:09.481: I/InjectionManager(19562): dispatchOnViewCreated > Target : com.sec.android.app.kwb.KwbLaunchActivity isFragment :false
04-20 10:40:09.481: D/KwbLaunchActivity(19562): onResume called
04-20 10:40:09.481: D/LibKwb(19562): WARNING: Could not load /libs/libkwb.so
04-20 10:40:09.481: D/LibKwb(19562): java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.sec.android.app.kwb-1/base.apk"],nativeLibraryDirectories=[/vendor/lib64, /system/lib64]]] couldn't find "libkwb.so"
04-20 10:40:09.481: E/art(19562): No implementation found for int com.sec.android.lib.kwb.LibKwb.getCustomBinStatusFlag() (tried Java_com_sec_android_lib_kwb_LibKwb_getCustomBinStatusFlag and Java_com_sec_android_lib_kwb_LibKwb_getCustomBinStatusFlag__)
edit:
Added the that in, now it has unmet dependencies
Code:
04-20 11:32:14.231: E/art(24783): dlopen("/data/app/com.sec.android.app.kwb-1/lib/arm/libkwb.so", RTLD_LAZY) failed: dlopen failed: could not load library "libQSEEComAPI.so" needed by "libkwb.so"; caused by library "libQSEEComAPI.so" not found
edit:
Added in libQSEEComAPI.so and the app fires up and you can get thru all of the prompts, but then it crashes because I had to remove the shareduser so it would install, basically it has no permissions. We need to be able to load the two dependencies without modifying the apk because we can't resign the apk with the same signing key that it was originally signed with.
If someone could test this on an S6 that has root and load the two .so files we could do some more testing.
Click to expand...
Click to collapse
I know CROM Service does have the library, what results, if any, did you see running that app?
The.Jericho.Initiative said:
I know CROM Service does have the library, what results, if any, did you see running that app?
Click to expand...
Click to collapse
i was not able to locate the libqseecomapi.so within the apk once i decompiled it.. when i tried to add it and recompile with original signature it failed to install as he stated due to signature..
i would assume if a rooted device was able to load the lib files to the right area, the apk would not need the original signature to function..
i have no idea if thats what he meant bcuz he is beyond my skill ha!
maybe we can get someone with root to help us out.
Sent from my SM-G925V using XDA Free mobile app
Post the libs and ill put them together tomorrow at the office. Will also be posting docs on how to deodex Android 5.0+ apks tomorrow as well
BMc08GT said:
Post the libs and ill put them together tomorrow at the office. Will also be posting docs on how to deodex Android 5.0+ apks tomorrow as well
Click to expand...
Click to collapse
Would that mean this thing might actually work?
Sent from my SAMSUNG-SM-G925A using Tapatalk
elliwigy said:
i was not able to locate the libqseecomapi.so within the apk once i decompiled it.. when i tried to add it and recompile with original signature it failed to install as he stated due to signature..
i would assume if a rooted device was able to load the lib files to the right area, the apk would not need the original signature to function..
i have no idea if thats what he meant bcuz he is beyond my skill ha!
maybe we can get someone with root to help us out.
Sent from my SM-G925V using XDA Free mobile app
Click to expand...
Click to collapse
If you can load the 2 files into the lib folder of the device there is no need to modify the apk and lose the signature and permissions. Even then the app checks the CID, IMEI, and serial which it then sends to a server to validate that you are using an unlockable device, which the AT&T variant isn't.
The only chance I see of this working is if we get root we could modify the app to have root permissions which would make modifying it not a problem. Might be possible to spoof the info being sent to the server but then there is a pretty good chance what it returned wouldn't work anyways because it doesn't match the phone.
Might be worth checking out, but I am pretty sure it's a dead end.
designgears said:
If you can load the 2 files into the lib folder of the device there is no need to modify the apk and lose the signature and permissions. Even then the app checks the CID, IMEI, and serial which it then sends to a server to validate that you are using an unlockable device, which the AT&T variant isn't.
The only chance I see of this working is if we get root we could modify the app to have root permissions which would make modifying it not a problem. Might be possible to spoof the info being sent to the server but then there is a pretty good chance what it returns wouldn't work anyways because it doesn't match the phone.
Might be worth checking out, but I am pretty sure it's a dead end.
Click to expand...
Click to collapse
Thanks for the clarification! so we need root in order to manually push the apk/libs as well as try to modify it so it will work on other devices..
i knew it wasnt that easy! thanks for looking into it! hopefully it can provide insight at a bl unlock later down the road if and when root is attained.
Thanks again!
Sent from my SM-G925V using XDA Free mobile app
So this is basically a dead end for AT&T/Verizion users?
Wiseor said:
So this is basically a dead end for AT&T/Verizion users?
Click to expand...
Click to collapse
This apk is a dead end. Hopefully chainf ire will get root.
Sent from my SM-G925V using XDA Premium HD app
Chain fire has nothing to do with getting root on locked phones... He doesn't do exploits
Att has root. Time to revive this thread?
Sent from My Samsung Galaxy S6 "Pure" Black
Is there any hope for this at all because I feal like we have the tool we just need to get past the checks
Wiseor said:
Is there any hope for this at all because I feal like we have the tool we just need to get past the checks
Click to expand...
Click to collapse
you need to manually push the libqseecom and libkwn files if you can find them then need to spoof device so it thinks its an unlockable variant when it contacts the server in order to have a chance at it working..
i am unable to locate the necessary files and when i installed both versions of the apk (also tried manually pushing and setting perms) they just fcd immediately.. i think this is due to me not having the required libs
Sent from my SM-G925V using XDA Free mobile app

How to remove SIM Icon from SystemUI.apk 5.0.2 Lollipop

pls help me remove the sim icon from status bar
Galaxy A3 SM-A300H 5.0.2 Lollipop
If you don't know how to decompile or recompile apk's, You can go and learn by searching it on google.
Requirements:
SystemUI.apk (deodex)
Text editor like Notepad++ or etc.
Know how to decompile/recompile apk's
Have a basic editing xml skills
Usefull brain
Patience
Some snacks
Steps:
Decompile SystemUI.apk
Open res/layout-sw320dp-hdpi/signal_cluster_view
Find android:id="@id/sim_icon_chn" and replace that line with this line
<ImageView android:id="@id/sim_icon_chn" android:visibility="invisible" android:layout_width="0.0dip" android:layout_height="0.0dip" android:layout_marginRight="0.0dip" />
Still on signal_cluster_view, find android:id="@id/sim_icon" and replace that line with this
<ImageView android:id="@id/sim_icon" android:visibility="invisible" android:layout_width="0.0dip" android:layout_height="0.0dip" android:layout_marginRight="0.0dip" />
Save
Recompile
Push/Flash using flashable zip via CWM/TWRP
Enjoy
I give full credit to their developers.
Peace

T285 SystemUI + 3MinitClock + MM White + Blur Effect Deodexed

1) The full date on the lock screen language English UK and Russian
2) Removed the inscription "Swipe screen to unlock" language English UK and Russian
3) Replaced icons of Phone and Camera
5) To turn off the backlight, press the clock
6) 3MinitClock/ https://forum.xda-developers.com/android/apps-games/3minit-clock-mod-v1-0-t3400221
7) Installation : twrp
T285 SystemUI Deodexed 1/2
1. mobile operator in the upper left corner, the clock in the center
2. Installation : twrp
SystemUI
if you are using a different SystemUI, you can add the operator name to the top left corner
SystemUI/res/layout/status_bar.xml and add a red line
Code:
<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.statusbar.phone.PhoneStatusBarView android:orientation="vertical" android:id="@id/status_bar" android:background="@drawable/system_bar_background"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:systemui="http://schemas.android.com/apk/res/com.android.systemui">
<FrameLayout android:id="@id/call_background" android:layout_width="fill_parent" android:layout_height="fill_parent" />
<ImageView android:id="@id/notification_lights_out" android:paddingBottom="2.0dip" android:visibility="gone" android:layout_width="@dimen/status_bar_icon_size" android:layout_height="fill_parent" android:src="@drawable/ic_sysbar_lights_out_dot_small" android:scaleType="center" android:paddingStart="6.0dip" />
<LinearLayout android:orientation="horizontal" android:id="@id/status_bar_contents" android:layout_width="fill_parent" android:layout_height="fill_parent" android:paddingStart="@dimen/status_bar_contents_padding_start" android:paddingEnd="@dimen/status_bar_contents_padding_end">
<com.android.systemui.statusbar.AlphaOptimizedFrameLayout android:orientation="horizontal" android:id="@id/notification_icon_area" android:layout_width="0.0dip" android:layout_height="fill_parent" android:layout_weight="1.0" android:alpha="@dimen/status_bar_icon_alpha">
<com.android.keyguard.AlphaOptimizedLinearLayout android:id="@id/notification_icon_area_inner" android:layout_width="fill_parent" android:layout_height="fill_parent">
[COLOR="Red"]<com.android.keyguard.CarrierText android:textAppearance="?android:textAppearanceSmall" android:textColor="#ffffffff" android:ellipsize="marquee" android:gravity="center_vertical" android:id="@id/keyguard_carrier_text" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />[/COLOR]
<com.android.systemui.statusbar.StatusBarIconView android:id="@id/moreIcon" android:visibility="gone" android:layout_width="@dimen/status_bar_icon_size" android:layout_height="fill_parent" android:src="@drawable/stat_notify_more" />
<com.android.systemui.statusbar.phone.IconMerger android:gravity="center_vertical" android:orientation="horizontal" android:id="@id/notificationIcons" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_alignParentStart="true" />
T285 SystemUI Blur Effect Deodexed
1. the picture on the lock screen will duplicate the picture on the home screen,you have to set the picture on the home screen and the picture will be displayed on the lock screen
2. If you have installed a new image on the home screen, you must restart the tablet
3. Installation : TWRP
T285 SystemUI/Framework-Res/WallpaperPickerZero2 Deodexed
1. Replaced all stock pictures on the pictures S9
2. Installation : twrp
3. https://yadi.sk/d/jY_vwdQo3UZR9K
4. You can also use this Framework-Res Full Screen Apps https://forum.xda-developers.com/showpost.php?p=76249002&postcount=3
T285 SystemUI/WallpaperPicker/FrameworkRes/Stock Deodexed
1. Stock Pictures
2. Installation : twrp
3. https://yadi.sk/d/_fNnse9Y3VDtda
snifing said:
1. Replaced all stock pictures on the pictures S9
2. Installation : twrp
3. https://yadi.sk/d/jY_vwdQo3UZR9K
4. You can also use this Framework-Res Full Screen Apps https://forum.xda-developers.com/showpost.php?p=76249002&postcount=3
Click to expand...
Click to collapse
I get bootloop when I flash this
---------- Post added at 10:15 AM ---------- Previous post was at 10:13 AM ----------
snifing said:
1. Stock Pictures
2. Installation : twrp
3. https://yadi.sk/d/_fNnse9Y3VDtda
Click to expand...
Click to collapse
Hello how do I get this to work, i have flashed previous once and I get bootloop phone keeps restarting.
willsrockson said:
I get bootloop when I flash this
---------- Post added at 10:15 AM ---------- Previous post was at 10:13 AM ----------
Hello how do I get this to work, i have flashed previous once and I get bootloop phone keeps restarting.
Click to expand...
Click to collapse
only for deodexed firmware
snifing said:
only for deodexed firmware
Click to expand...
Click to collapse
So you mean I will have to flash a new ROM before I can use the mod, please do you have link for that
---------- Post added at 01:22 PM ---------- Previous post was at 01:13 PM ----------
snifing said:
only for deodexed firmware
Click to expand...
Click to collapse
Whats deodexed firmware
willsrockson said:
So you mean I will have to flash a new ROM before I can use the mod, please do you have link for that
Click to expand...
Click to collapse
any modifications can be used only for deodexed firmware, you cannot use stock firmware
https://forum.xda-developers.com/ga...5-deodexed-stock-firmware-region-btu-t3691875
https://forum.xda-developers.com/showpost.php?p=75805830&postcount=13
snifing said:
any modifications can be used only for deodexed firmware, you cannot use stock firmware
https://forum.xda-developers.com/ga...5-deodexed-stock-firmware-region-btu-t3691875
https://forum.xda-developers.com/showpost.php?p=75805830&postcount=13
Click to expand...
Click to collapse
Please how is the performance of the deodexed compared to stock, I want to know please
willsrockson said:
Please how is the performance of the deodexed compared to stock, I want to know please
Click to expand...
Click to collapse
there is no difference between stock firmware and deodexed firmware, but if you use stock firmware, you will not be able to install the modifications, the modifications can only be installed if you use deodexed firmware
snifing said:
there is no difference between stock firmware and deodexed firmware, but if you use stock firmware, you will not be able to install the modifications, the modifications can only be installed if you use deodexed firmware
Click to expand...
Click to collapse
Okay I had an update last week and I updated it , I just want to know if it's not gonna conflict with the bootloader when Im flashing the deodexed
willsrockson said:
Okay I had an update last week and I updated it , I just want to know if it's not gonna conflict with the bootloader when Im flashing the deodexed
Click to expand...
Click to collapse
Deodexed installed on a specific firmware version, cannot be installed on any version of stock firmware,you can choose BTU stock firmware or INS + deodexed BTU or INS
Odex
In Android file system, applications come in packages with the extension .apk.
These application packages, or APK contain certain .odex files whose supposed function is to save space.
These ‘odex’ files are actually collections of parts of an application that are optimized before booting.
Doing so speeds up the boot process, as it preloads part of an application.
On the other hand, it also makes hacking those applications difficult because a part of the coding has already been extracted to another location before execution.
Deodexed
Deodexed is basically repackaging of these APKs in a certain way, such that they are reassembled into classes.dex files.
By doing that, all pieces of an application package are put together back in one place, thus eliminating the worry of a modified APK conflicting with some separate odexed parts.
snifing said:
Deodexed installed on a specific firmware version, cannot be installed on any version of stock firmware,you can choose BTU stock firmware or INS + deodexed BTU or INS
Odex
In Android file system, applications come in packages with the extension .apk.
These application packages, or APK contain certain .odex files whose supposed function is to save space.
These ‘odex’ files are actually collections of parts of an application that are optimized before booting.
Doing so speeds up the boot process, as it preloads part of an application.
On the other hand, it also makes hacking those applications difficult because a part of the coding has already been extracted to another location before execution.
Deodexed
Deodexed is basically repackaging of these APKs in a certain way, such that they are reassembled into classes.dex files.
By doing that, all pieces of an application package are put together back in one place, thus eliminating the worry of a modified APK conflicting with some separate odexed parts.
Click to expand...
Click to collapse
I'm not understanding this please explain to me, I wanted to follow the instructions from the site you sent me, but I just wanted to Know if there's a specific build number I have to be on to be able to flash that, or any build number on 5.1.1 is okay, please I'm talking of me flashing Deodexed firmware.
willsrockson said:
I'm not understanding this please explain to me, I wanted to follow the instructions from the site you sent me, but I just wanted to Know if there's a specific build number I have to be on to be able to flash that, or any build number on 5.1.1 is okay, please I'm talking of me flashing Deodexed firmware.
Click to expand...
Click to collapse
you have to flash stock firmware T285XXU0AQH1 + T285XXU0AQH1_DEODEXED I gave you this link https://forum.xda-developers.com/ga...5-deodexed-stock-firmware-region-btu-t3691875
snifing said:
you have to flash stock firmware T285XXU0AQH1 + T285XXU0AQH1_DEODEXED I gave you this link https://forum.xda-developers.com/ga...5-deodexed-stock-firmware-region-btu-t3691875
Click to expand...
Click to collapse
Okay I will follow through instructions there thanks so much
willsrockson said:
Okay I will follow through instructions there thanks so much
Click to expand...
Click to collapse
Man thanks so much, I have successfully flashed it and it working great, but I can't install Facebook messenger and also not all icons looks like s8 themed.

Categories

Resources