deodex file - Galaxy S I9000 General

Hi guys
I'd manage to manually deodex the app and framework file from my stock rom. The problem are I can't push them either thru adb nor update.zip. Been googling around but can't really get a correct adb command for sgs. I need to push these files so that I can install themes. Anybody who can guide please help. Thanks in advance.

You need super user permission to push things into read only memory. So you would need to go through adb shell, mount whatever folder framework is in to readable, etc.

snapper.fishes said:
You need super user permission to push things into read only memory. So you would need to go through adb shell, mount whatever folder framework is in to readable, etc.
Click to expand...
Click to collapse
Hi snapper.fishes
By the way, I got superuser permission. The only problem I don't know the correct command for the adb shell - su - mount etc, etc....
This are the command I got from Droid forum but it does not work for SGS I guest.
adb shell
su
stop
mount -o rw,remount -t ext3 /dev/block/mmcblk1p21 /system
cp /sdcard/done_app/* /system/app/
cp /sdcard/done_frame/* /system/framework/
rm /system/app/*.odex
rm /system/framework/*.odex
mount -o ro,remount -t ext3 /dev/block/mmcblk1p21 /system
reboot
Anybody got any idea?

Try this:
adb shell
su
mount -o rw,remount /system
cp /sdcard/done_app/* /system/app/
cp /sdcard/done_frame/* /system/framework/
rm /system/app/*.odex
rm /system/framework/*.odex
mount -o ro,remount /system
reboot
Sent from my GT-I9000 using XDA App

g00ndu said:
Try this:
adb shell
su
mount -o rw,remount /system
cp /sdcard/done_app/* /system/app/
cp /sdcard/done_frame/* /system/framework/
rm /system/app/*.odex
rm /system/framework/*.odex
mount -o ro,remount /system
reboot
Sent from my GT-I9000 using XDA App
Click to expand...
Click to collapse
Thanks for the tips g00ndu. If I push those deodex file, they will overide and delete all the odex file right? Should I disable the universal lagfix first and is it safe pushing deodex file this way?

angiogram said:
Thanks for the tips g00ndu. If I push those deodex file, they will overide and delete all the odex file right? Should I disable the universal lagfix first and is it safe pushing deodex file this way?
Click to expand...
Click to collapse
I say remove the lagfix first. It's not necessary, but if you do screw up your phone you are going to have to reflash your phone, and the last thing you want to do is to flash your phone with lagfix on.

angiogram said:
Thanks for the tips g00ndu. If I push those deodex file, they will overide and delete all the odex file right? Should I disable the universal lagfix first and is it safe pushing deodex file this way?
Click to expand...
Click to collapse
It's been a long time since I pushed files this way. Right now I'm using update zips and flash it via ulfk. Reason: it is much more simpler and more effective. If I remember correctly, your apk files need to be deleted too before you can push your deodexed apks and jars files to the system folder if you do it via adb.
Besides, I would not advocate this method of pushing through adb, bcos, there is always chances that your /system, /data partitions may result in data corruption.
Try using update zip.
Sent from my GT-I9000 using XDA App

g00ndu said:
It's been a long time since I pushed files this way. Right now I'm using update zips and flash it via ulfk. Reason: it is much more simpler and more effective. If I remember correctly, your apk files need to be deleted too before you can push your deodexed apks and jars files to the system folder if you do it via adb.
Besides, I would not advocate this method of pushing through adb, bcos, there is always chances that your /system, /data partitions may result in data corruption.
Try using update zip.
Sent from my GT-I9000 using XDA App
Click to expand...
Click to collapse
Thanks for your reply g00ndu. I've already try that. But after the zip file updated nothing happen. Maybe the zip creator that I use is not compatible with sgs. Can you kindly link to the correct source for sgs. Or maybe you can post the file and tutorial here so that we can learn the correct method from you. Thank you so much for that.
Anybody can help?

Deodexing Your Device - Full Step By Step Tutorial
angiogram said:
Hi guys
I'd manage to manually deodex the app and framework file from my stock rom. The problem are I can't push them either thru adb nor update.zip. Been googling around but can't really get a correct adb command for sgs. I need to push these files so that I can install themes. Anybody who can guide please help. Thanks in advance.
Click to expand...
Click to collapse
angiogram said:
Thanks for your reply g00ndu. I've already try that. But after the zip file updated nothing happen. Maybe the zip creator that I use is not compatible with sgs. Can you kindly link to the correct source for sgs. Or maybe you can post the file and tutorial here so that we can learn the correct method from you. Thank you so much for that.
Anybody can help?
Click to expand...
Click to collapse
Hey angiogram... I'm not sure if this thread still has a pulse, but I came across this thread and feel confident I can offer you some great information.
g00udu was on the right track, only one small detail I would add is reverting the permissions back to the system files once returned to the system directory.
See this link http://forum.xda-developers.com/showthread.php?t=990238
for an extremely detailed step by step how to perform this process from beginning to end.
If this issue has been resolved, keep it for future reference or pass it on to someone who you believe it may help.
Peace-

Thanks Liv33vil.
Sent from my GT-I9000 using XDA Premium App

Related

[Q] Somone Please Help Me(I'm So Confused!!!)

I need so much help right now with restoring to stock from the hdmi update so that i can update from 1.26.
ok this is the part I do NOT understand.
Where exactly do I put all of this????
adb shell
su
mount -o rw,remount /dev/block/mmcblk0p12 /system
cp /mnt/sdcard/WebtopModBackup/DockProvider.odex.bak /system/app/DockProvider.odex
cp /mnt/sdcard/WebtopModBackup/DockService.odex.bak /system/app/DockService.odex
cp /mnt/sdcard/WebtopModBackup/PortalApp.odex.bak /system/app/PortalApp.odex
cp /mnt/sdcard/WebtopModBackup/DockProvider.apk.bak /system/app/DockProvider.apk
cp /mnt/sdcard/WebtopModBackup/DockService.apk.bak /system/app/DockService.apk
cp /mnt/sdcard/WebtopModBackup/PortalApp.apk.bak /system/app/PortalApp.apk
chmod 644 /system/app/*
Please someone help me. I'm so deperately needing this..
JxWayne89 said:
I need so much help right now with restoring to stock from the hdmi update so that i can update from 1.26.
ok this is the part I do NOT understand.
Where exactly do I put all of this????
adb shell
su
mount -o rw,remount /dev/block/mmcblk0p12 /system
cp /mnt/sdcard/WebtopModBackup/DockProvider.odex.bak /system/app/DockProvider.odex
cp /mnt/sdcard/WebtopModBackup/DockService.odex.bak /system/app/DockService.odex
cp /mnt/sdcard/WebtopModBackup/PortalApp.odex.bak /system/app/PortalApp.odex
cp /mnt/sdcard/WebtopModBackup/DockProvider.apk.bak /system/app/DockProvider.apk
cp /mnt/sdcard/WebtopModBackup/DockService.apk.bak /system/app/DockService.apk
cp /mnt/sdcard/WebtopModBackup/PortalApp.apk.bak /system/app/PortalApp.apk
chmod 644 /system/app/*
Please someone help me. I'm so deperately needing this..
Click to expand...
Click to collapse
In a batch file placed in a folder with the adb.exe executible.
Thank you so much for the reply, but I'm so sorry for my noobness. I have no idea how to get to where you are talking about. I had a friend do this for me and I was under the impression that he knew what he was doing. so now we are both stuck on 1.26, and he has one less friend. Do you mind giving me steps on how to do this? Once again I apologize for my noobness.
Assuming you are in windows.... open notepad, copy that stuff into a file and save it as something.bat make sure you change the file type to All Files first.
You should have the adb.exe somewhere on your computer or you can download it in this zip:
http://forum.xda-developers.com/attachment.php?attachmentid=586525&d=1304523295
Extract that zip file to the root of your c: drive and put the something.bat file you made in the folder... then just double click that something.bat and it should run it.
**I have no idea if the commands you have up there work.**
Personally I'd just do a full backup with Titanium Backup, and then download and flash the 1.5.7 SBF and then OTA update to 1.8.3 and be done with it.
oh wow. thank you so much. you have no idea how much I appreciate al of this. I'm going to give this a try. may have to flash to 1.57 instead if it doesnt work. Thank you!!!
It works!! I'm on 1.83 now! Thank you soooo much! Enjoying my 3 plus megabytes download right now!!
Sent from my MB860 using XDA Premium App
Im sorry, I meant 1.86!
Sent from my MB860 using XDA Premium App
Glad you got it working. Which method did you use? The script or just flashing the sbf files?
Sent from my MB860 using XDA Premium App

Help ADB Push to /System Folder

Hope this is the right place to post this.
My Atrix is rooted stock 1.83 .
I'm trying to "adb push" some OGG files to "/system/media/audio/" to add-to and replace some of the existing system sounds, especially that bloody annoying keypress (typewriter) sound, but I'm getting the following error (which makes sense):
Read-only file system
Tried using Root Explorer, same issue...again makes sense since its mounted as Read only on boot.
I tried booting into recovery mode, but I can't access the phone via ADB at all, even with USB Debug enabled. I also tried "adb remount" command, no luck either. I get an error "operation not permitted".
So, does anyone know the correct sequence of commands I need in ADB to remount the Atrix /system folder as RW??
What I have been doing is using adb push to the /sdcard then using adb shell then su then
mount -t rfs -o remount,rw /dev/stl5 /system
Then cp /sdcard/whatever /system/media
Sent from my MB860 using XDA App
EDIT: im at my computer now so I can write this easier to understand, lol
Lets say the file you want to change is called whatever.ogg
Code:
adb push whatever.ogg /sdcard/whatever.ogg
adb shell
su
mount -t rfs -o remount,rw /dev/stl5 /system
cp /sdcard/whatever.ogg /system/media/audio/notifications
when you access root explorer, does it let you know that it has been granted supervisor privilages? Does it give you the option to change from read to write? what did you use to root? I had to run the original Aroot three times before if finally gave me root.
You're the best, worked perfectly Can't believe that hideous typewriter sound is gone, it only took me 1.5 years as an Android user to finaly say enough is enough. Whomever thought it was a good idea to mimic the sound of an 1800's typewriter on a 21st century device needs to be fired.
Thanks again.
aver2one said:
What I have been doing is using adb push to the /sdcard then using adb shell then su then
mount -t rfs -o remount,rw /dev/stl5 /system
Then cp /sdcard/whatever /system/media
Sent from my MB860 using XDA App
EDIT: im at my computer now so I can write this easier to understand, lol
Lets say the file you want to change is called whatever.ogg
Code:
adb push whatever.ogg /sdcard/whatever.ogg
adb shell
su
mount -t rfs -o remount,rw /dev/stl5 /system
cp /sdcard/whatever.ogg /system/media/audio/notifications
Click to expand...
Click to collapse
i need help
im using a clone samsung galaxy tab2.tried to change the system font with root browser and it bricked.the phone dont have cwm so i didnt back up my rom.any command in adb that can be used to change the font folder
Obiechina said:
im using a clone samsung galaxy tab2.tried to change the system font with root browser and it bricked.the phone dont have cwm so i didnt back up my rom.any command in adb that can be used to change the font folder
Click to expand...
Click to collapse
Well congrats! that was the dumbest thing ever. NEVER attempt something like that unless you have CWM or equivalent installed, have a backup, and know what you are doing.
Have you tried to read your device's xda forum?
Please Help
Hahaha, can you help me?
i want to change my /system/framework folder by using the POWER and UP volume keys
i had a backup of my system/framework in my SD..
What should i do?

Manually Deodex Any S5830 Rom !!!

After i succesfull deodex my stock rom i've decided to share my experience with ya'll people ...
Here we go :
1. You must be rooted !!!
2. Download -> xUltimate
3. Unzip xUltimate v2.2, and launch "Main.exe"
4. Now xUltimate should recognize the phone and make a connection. You now should see a list of options.
5. Run option 1. After option 1 is done, run option 2.
6. Now these well take a while. Run option 3
7. IMPORTANT: After you have run option 3, you MUST navigate to the xUltimate folder and find "origi_frame" folder, and delete "guava.odex". It's a bad file, and interferes with deodexing process.
8. Now run option 4, and wait.
9. Exit xUltimate, and put the phone in USB mass storage then copy "done_frame", and "done_app" to the root of the sdcard then put the phone in PC mode.
10. Open a command prompt, and do the following:
Code:
adb shell
su
stop
mount -o rw,remount -t ext3 /dev/block/mmcblk1p21 /system
busybox cp /sdcard/done_app/* /system/app/
busybox cp /sdcard/done_frame/* /system/framework/
rm /system/app/*.odex
rm /system/framework/*.odex
mount -o ro,remount -t ext3 /dev/block/mmcblk1p21 /system
reboot
After phone is boot, reboot again in CWM and Wipe Dalvin Cache, reboot and ENJOY !!!
Notice : The boot will take a little bit longer than normal (2-4 seconds +)
P.S. For step 7 ... there is no guava.odex, don't worry about, continue to next step !
Credits :
Rainabba, Mike919, toxman, teenfaces, Xeudoxus !
Fisrt post ! Good work dude!!
You must have adb (by installing android sdk, platform-tools, install usb driver too) and jdk to do this if anyone is wondering.
kevinlekiller said:
You must have adb (by installing android sdk, platform-tools, install usb driver too) and jdk to do this if anyone is wondering.
Click to expand...
Click to collapse
I assumed that those who want to deodex their rom already knew that, anyway, thanx for reply
Nice tutorial!
Sent from my GT-S5830 using xda premium
Thanks y'all, I will also post other tutorials if i discover something interesting !
I know this question is stupid, but what's the difference between odexed and deodexed rom?
Yesterday I was trying to figure out how to deodex and today you make a tutorial, lol
Thanks.
excellent!! could create one of how to add cf-root and menu extended to create custom roms, is the last thing I need to learn to develop roms
tazlooney89 said:
excellent!! could create one of how to add cf-root and menu extended to create custom roms, is the last thing I need to learn to develop roms
Click to expand...
Click to collapse
Cf root xd to easy
Its in th .zip self
Just extract look in folder and place them where they belong
Sent from my GT-S5830 using xda premium
thanks dude!
now i can get pdroid running on stock rom *_*
Great tutorial thanks!
It would be great if you show how to enable CRT animation in any stock rom ang make grouping widgets in menu.
P4qui7o said:
After i succesfull deodex my stock rom i've decided to share my experience with ya'll people ...
Here we go :
1. You must be rooted !!!
2. Download -> xUltimate
3. Unzip xUltimate v2.2, and launch "Main.exe"
4. Now xUltimate should recognize the phone and make a connection. You now should see a list of options.
5. Run option 1. After option 1 is done, run option 2.
6. Now these well take a while. Run option 3
7. IMPORTANT: After you have run option 3, you MUST navigate to the xUltimate folder and find "origi_frame" folder, and delete "guava.odex". It's a bad file, and interferes with deodexing process.
8. Now run option 4, and wait.
9. Exit xUltimate, and put the phone in USB mass storage then copy "done_frame", and "done_app" to the root of the sdcard then put the phone in PC mode.
10. Open a command prompt, and do the following:
Code:
adb shell
su
stop
mount -o rw,remount -t ext3 /dev/block/mmcblk1p21 /system
busybox cp /sdcard/done_app/* /system/app/
busybox cp /sdcard/done_frame/* /system/framework/
rm /system/app/*.odex
rm /system/framework/*.odex
mount -o ro,remount -t ext3 /dev/block/mmcblk1p21 /system
reboot
After phone is boot, reboot again in CWM and Wipe Dalvin Cache, reboot and ENJOY !!!
Notice : The boot will take a little bit longer than normal (2-4 seconds +)
P.S. For step 7 ... there is no guava.odex, don't worry about, continue to next step !
Credits :
Rainabba, Mike919, toxman, teenfaces, Xeudoxus !
Click to expand...
Click to collapse
Superb Tutorial Dude...
I am currently testing @Jusadas latest "Carbon Sunday Beta1" rom... It is fully odexed & so far is bug free (Totally)...... I would like to try & DeOdex the rom so that PDroid & Patch can be implemented...
I Know that PDroid framework has now been ported for Odexed roms, but when I flash the Odexed version I get stuck at Android txt during boot...
Will report back if your technique works...
Stay Breezy n Be Lucky...
Pe"ACE"...
Thanx man what a great work , i actually look for deodexing method coz i want to translate an odexed rom but i has to be deodexed first
I'll give it a shot !
Excellent guide!!!
Will try it tmw
Thanks =)
Sent from my GT-P6800 using xda premium
Well the title says manually deodex. But this uses the tool. To manually do it you need to decompile each app individually and then edit it.
Btw, nice giude..
TeamCooper Developer
TheMyth Developer
www.teamcooper.net
ERROR!
Tried this on my stock ddkq8 gingerbread 2.3.6 rom. But whenever I run this line: busybox cp /sdcard/done_app/* /system/app/
it says cp: No space left on device.
and my phone bricks.
It seems that the command does not overwrite the files in /system/app and thus the error.
BTW what do you mean by pc mode?
PLS reply!
galaxyace152 said:
Tried this on my stock ddkq8 gingerbread 2.3.6 rom. But whenever I run this line: busybox cp /sdcard/done_app/* /system/app/
it says cp: No space left on device.
and my phone bricks.
It seems that the command does not overwrite the files in /system/app and thus the error.
BTW what do you mean by pc mode?
PLS reply!
Click to expand...
Click to collapse
Before "10. Open a command prompt, and do the following:"
Just delete some apps to make 40 mb free in system !
That's how i did and work's
Use Root Explorer or something
shaaan said:
Well the title says manually deodex. But this uses the tool. To manually do it you need to decompile each app individually and then edit it.
Btw, nice giude..
TeamCooper Developer
TheMyth Developer
www.teamcooper.net
Click to expand...
Click to collapse
Developer Talking
---------- Post added at 08:57 PM ---------- Previous post was at 08:56 PM ----------
Stuck on boot loop! :| And yes, I wiped everything. Nice tutorial BTW, appreciate it.
EDIT: Never mind. Sorted it.
C:\android-sdk-windows\platform-tools>adb shell
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
$ su
su
# stop
stop
# mount -o rw,remount -t ext3 /dev/block/mmcblk1p21 /system
mount -o rw,remount -t ext3 /dev/block/mmcblk1p21 /system
# busybox cp /sdcard/done_app/* /system/app/
busybox cp /sdcard/done_app/* /system/app/
cp: can't stat '/sdcard/done_app/*': No such file or directory
# busybox cp /sdcard/done_frame/* /system/framework/
busybox cp /sdcard/done_frame/* /system/framework/
cp: can't stat '/sdcard/done_frame/*': No such file or directory
# rm /system/app/*.odex
rm /system/app/*.odex
# rm /system/framework/*.odex
rm /system/framework/*.odex
# mount -o ro,remount -t ext3 /dev/block/mmcblk1p21 /system
mount -o ro,remount -t ext3 /dev/block/mmcblk1p21 /system
# reboot
reboot
C:\android-sdk-windows\platform-tools>
how come mine is like this...? anyone can help me...? plz
after that my phone cant start...it stuck on the galaxy ace screen...???

[Q] galaxy y s5360 DDMD1 problem

I have flashed ddmd1(latest stock firmware) using odin. After that flashed the DE-ODEX zip file using CWM . After starting the device, when switching on the WIFI, rom stucked, gone into a startup loop . Same happening with the ODEX version . ***Need help***
Also cant flash any custom kernel to DDMD1. If there's any in somebody's knowing please share.
surajbecks said:
I have flashed ddmd1(latest stock firmware) using odin. After that flashed the DE-ODEX zip file using CWM . After starting the device, when switching on the WIFI, rom stucked, gone into a startup loop . Same happening with the ODEX version . ***Need help***
Also cant flash any custom kernel to DDMD1. If there's any in somebody's knowing please share.
Click to expand...
Click to collapse
which deodex zip u used?
also to get wifi working, flash this through cwm. mount everything before flash. credits: @whitexp
SaketJoshi said:
which deodex zip u used?
also to get wifi working, flash this through cwm. mount everything before flash. credits: @whitexp
Click to expand...
Click to collapse
the odex and de-odex specified in the link below
http://forum.xda-developers.com/showthread.php?t=2351623
surajbecks said:
the odex and de-odex specified in the link below
http://forum.xda-developers.com/showthread.php?t=2351623
Click to expand...
Click to collapse
you may follow this guide to deodex your ddmd1. tested and 100% working
u need rooted phone
just in the adb shell codes,
use these codes:
remember to put email.apk and email.odex in done-app
Code:
adb shell
su
stop
mount -o rw,remount /system/ /system/
rm /system/app/*.odex
busybox cp /sdcard/done_app/*.* /system/app/
rm /system/framework/*.odex
busybox cp /sdcard/done_frame/*.* /system/framework/
mount -o ro,remount /system/ /system/
reboot
SaketJoshi said:
you may follow this guide to deodex your ddmd1. tested and 100% working
u need rooted phone
just in the adb shell codes,
use these codes:
remember to put email.apk and email.odex in done-app
Code:
adb shell
su
stop
mount -o rw,remount /system/ /system/
rm /system/app/*.odex
busybox cp /sdcard/done_app/*.* /system/app/
rm /system/framework/*.odex
busybox cp /sdcard/done_frame/*.* /system/framework/
mount -o ro,remount /system/ /system/
reboot
Click to expand...
Click to collapse
what will be inside done_frame folder.
why copying email.odex
surajbecks said:
what will be inside done_frame folder.
why copying email.odex
Click to expand...
Click to collapse
done_app will have all the deodexed apps like settings, dialer, phone and others
done_frame will have framework files like framework-res, android.policy.jar
as email cannot be deodexed, we need to copy both email.apk and email.odex, else you'll get a bootloop
SaketJoshi said:
done_app will have all the deodexed apps like settings, dialer, phone and others
done_frame will have framework files like framework-res, android.policy.jar
as email cannot be deodexed, we need to copy both email.apk and email.odex, else you'll get a bootloop
Click to expand...
Click to collapse
so, do i need any framework files............. or just leave it blank
surajbecks said:
so, do i need any framework files............. or just leave it blank
Click to expand...
Click to collapse
just follow the instructions in the link. you cannot leave it blank. also remember to copy email.odex and .apk in done_app and use the code i provided
and everything will be fine
SaketJoshi said:
just follow the instructions in the link. you cannot leave it blank. also remember to copy email.odex and .apk in done_app and use the code i provided
and everything will be fine
Click to expand...
Click to collapse
which link ............... ????????????????????
surajbecks said:
which link ............... ????????????????????
Click to expand...
Click to collapse
you may follow this guide to deodex your ddmd1. tested and 100% working
u need rooted phone
just in the adb shell codes,
use these codes:
remember to put email.apk and email.odex in done-app
Code:
adb shell
su
stop
mount -o rw,remount /system/ /system/
rm /system/app/*.odex
busybox cp /sdcard/done_app/*.* /system/app/
rm /system/framework/*.odex
busybox cp /sdcard/done_frame/*.* /system/framework/
mount -o ro,remount /system/ /system/
reboot
sorry frnd, its near about 3.30am here and i would like to sleep. press thanks if i helped you.

Deodex I did How Can I put files?

I was able to deodex the system files. However, I can get the system files on the phone. Please help?
I don't know it will work but here is a good tutorial:
http://forum.xda-developers.com/showthread.php?t=2374008
olrak said:
I don't know it will work but here is a good tutorial:
http://forum.xda-developers.com/showthread.php?t=2374008
Click to expand...
Click to collapse
There was a misunderstanding. I've already done. I could not put them in the phone.
In the guide:
Now there are 2 ways to install deodex files in device
If you take step 1, you need to startup your phone, make sure you are in developers mode, connect your phone with the usb cable to the computer and then do these commands:
Code:
adb shell
su
stop
mount -o rw,remount /system/ /system/
cp /sdcard/done_app/* /system/app/
rm /system/app/*.odex
cp /sdcard/done_frame/* /system/framework/
rm /system/framework/*.odex
mount -o ro,remount /system/ /system/
reboot
Xpredator 20 said:
I was able to deodex the system files. However, I can get the system files on the phone. Please help?
Click to expand...
Click to collapse
Whenever i tried i failed so can you tell me how you did that
olrak said:
In the guide:
Now there are 2 ways to install deodex files in device
If you take step 1, you need to startup your phone, make sure you are in developers mode, connect your phone with the usb cable to the computer and then do these commands:
Code:
adb shell
su
stop
mount -o rw,remount /system/ /system/
cp /sdcard/done_app/* /system/app/
rm /system/app/*.odex
cp /sdcard/done_frame/* /system/framework/
rm /system/framework/*.odex
mount -o ro,remount /system/ /system/
reboot
Click to expand...
Click to collapse
Sorry, but I don't understand. How to turn on developer mode?
I tried this way.
What am I doing wrong?
Soularis sun said:
Whenever i tried i failed so can you tell me how you did that
Click to expand...
Click to collapse
http://forum.xda-developers.com/gal...x-tool-android-l-t2972025/page58#post65743703
I have not tried is myself. I only wanted to help you out how you could do it.
adb is way to communicate between your phone and your computer. download the files here : https://mega.nz/#!pBFBTLoI!jZY2Wdh6VlHF9Cx8nhawlX4CDPJXT1KWwIbZ-3PN4GM
On your phone:
Then you need to put your phone in developers mode, push 10 times on buildnumber in about the phone.
Then select USB-error in the options for developers in settings menu.
On your computer
Then you need to how to a command prompt, cmd to the extracted directory. Put in you usb cable in your phone and computer. And execute the commands above if the files are in the correct directory on your sd card.
olrak said:
I have not tried is myself. I only wanted to help you out how you could do it.
adb is way to communicate between your phone and your computer. download the files here : https://mega.nz/#!pBFBTLoI!jZY2Wdh6VlHF9Cx8nhawlX4CDPJXT1KWwIbZ-3PN4GM
On your phone:
Then you need to put your phone in developers mode, push 10 times on buildnumber in about the phone.
Then select USB-error in the options for developers in settings menu.
On your computer
Then you need to how to a command prompt, cmd to the extracted directory. Put in you usb cable in your phone and computer. And execute the commands above if the files are in the correct directory on your sd card.
Click to expand...
Click to collapse
The files in the right place, isn't it?
It's o not 0 (zero)
olrak said:
It's o not 0 (zero)
Click to expand...
Click to collapse
So what should I do? Why say such a thing?
" o " did the same
olrak said:
It's o not 0 (zero)
Click to expand...
Click to collapse
He says the file could not be reached .
Xpredator 20 said:
http://forum.xda-developers.com/gal...x-tool-android-l-t2972025/page58#post65743703
Click to expand...
Click to collapse
Thanks alot
olrak said:
It's o not 0 (zero)
Click to expand...
Click to collapse
Why it says the files could not be found can you help? By throwing the files where do I need to enter these commands?
P8 Lite cihazımdan Tapatalk kullanılarak gönderildi
Deodex Rom
anyone has the deodex rom, I have a thread where found but the download link does not work anymore.
Soularis sun said:
Thanks alot
Click to expand...
Click to collapse
Well it didnot work on B180 version i have tried many times
You have to keep your previous system, factory reset only, and push the 3 folder in a zip with a script to flash it by twrp, easy and quick
But without fix and keep few system app odex, the flash work but not the system after the boot, it's why the link of the deodex was down, because don't works. Also just deodex it's really easy but the job don't stop here, for working you have to fix many things and also have the knowledge for that.
(system app need to be fix, framework too and many more)
Just deodex is not useful
And deodex the beta firmware is not more useful, really better to works on official version and wait the official marshmallows
A really good knowledge is necessary for fixing the firmware. Deodex can be make by anybody with the automatic tool's
Personally I appreciate more working on a custom kernel for the p8 lite. Because we can have the sources

Categories

Resources