How to de-odex a Desire ROM? - Android

Helllo everybody
Can anybody tell me (or a link?) how I can de-odex the rootedupdate.zip version 1.21.405.2?
Thank u

http://code.google.com/p/smali/wiki/DeodexInstructions

how space does de-odexing save? if that is one of its benefit

I tried it with the auto deodexer from this topic: http://forum.xda-developers.com/showthread.php?t=598026
The "De-odexing process" was successful. I de-odexed the /system/framework and the /system/app folder.
But if I replace the old /app and /framework with the de-odexed ones, my device doesn't startup.
Can anybody help me?

Flash the rom and then boot with logcat and search for the problem.

nickiberli said:
I tried it with the auto deodexer from this topic: http://forum.xda-developers.com/showthread.php?t=598026
The "De-odexing process" was successful. I de-odexed the /system/framework and the /system/app folder.
But if I replace the old /app and /framework with the de-odexed ones, my device doesn't startup.
Can anybody help me?
Click to expand...
Click to collapse
I'm having the same problem, do you solve it???

@ nickiberli : Download dsixda's kitchen and install it following his directions. It has all the tools you need to get started customizing ROMs. I believe your problem is that your .zip is not being signed which is another thing that his kitchen does for you.
@ ermacwins : Basically, (I'm not 100% on this explanation) "de-odexed" .apks are simply a .zip with a different extension. This allows further customization of the .apk. "odexed" .apks are split into two files, an ".apk" and an ."odex". The "odexed" .apk still contains the information that the "de-odexed" contains but is spread across the two files. To answer your question, I don't believe that a "de-odexed" rom saves you any more space than an "odexed" rom or vice versa.
@slavatore82 : Try the stuff I posted above. It should work for you. It's the method I've been using and it works great.

salvatore82 said:
I'm having the same problem, do you solve it???
Click to expand...
Click to collapse
When you deodex your files try to set compression level less than default. Till to 0. After deodex first boot-up might take about 10-15 min.

Dont know if this is going to shine light to anyones perspective view, but it did too me.
Link>>> http://www.addictivetips.com/mobile/what-is-odex-and-deodex-in-android-complete-guide/

SystemErrorOne said:
Dont know if this is going to shine light to anyones perspective view, but it did too me.
Link>>> http://www.addictivetips.com/mobile/what-is-odex-and-deodex-in-android-complete-guide/
Click to expand...
Click to collapse
Way to resurrect a 6 month old thread dude! lol, Just joking with ya, btw that link has some good info. Thanks for sharing it.

mbobino said:
Way to resurrect a 6 month old thread dude! lol, Just joking with ya, btw that link has some good info. Thanks for sharing it.
Click to expand...
Click to collapse
haha my bad man just trying to help lol

Related

[Ready to DONATE][Q] How to manually deodex Email.apk and Mobileprint.apk

I found many threads of people who can't deodex Email.apk, Mobileprint.apk, even manualy, including every .jar in the baksmali.jar -c: xxxx.
Is there a Dev who could give us the command line to succesfully deodex Email.odex and Mobileprint.odex ?
Thanks
Edit 06/30/2011 : I am ready to donate for the help you could give me
Found the same threads you did.. I am researching this as well.. Will keep you updated if I find anything.
U don't need to deodex the whole rom, though you will need to deodex the whole framework.
mak1 said:
U don't need to deodex the whole rom, though you will need to deodex the whole framework.
Click to expand...
Click to collapse
Ok, thanks for the answer, but what to do with the .odex files (Email and Mobileprint), I'm not going to leave them non deodexed with others deodexeds apk ?
sicopat said:
Ok, thanks for the answer, but what to do with the .odex files (Email and Mobileprint), I'm not going to leave them non deodexed with others deodexeds apk ?
Click to expand...
Click to collapse
i wana know this tooo
If ur not changing anything in the BOOTCLASSPATH files, u can deodex a single file
-app for eg.-, edit it and put it into ur device without deodexing anything else, delete the existing odex file.
u'll need baksmali for that purpose-apktool donot have that feature btw-also u'v to have framework files available (just pull the entire framework directory from the phone) pass it's directory via the -d option. App depends on particular jar files will require that through -c option.
mak1 said:
If ur not changing anything in the BOOTCLASSPATH files, u can deodex a single file
-app for eg.-, edit it and put it into ur device without deodexing anything else, delete the existing odex file.
u'll need baksmali for that purpose-apktool donot have that feature btw-also u'v to have framework files available (just pull the entire framework directory from the phone) pass it's directory via the -d option. App depends on particular jar files will require that through -c option.
Click to expand...
Click to collapse
That's the problem, even with the entire framework directory, I am not able to deodex Email.apk and Mobileprint.apk . Seems like if missing Bootclasspath ...
No problem manualy deodexing every other apks ..
I tried to deodex both of these files with omrij's tool and it was successfull.
http://forum.xda-developers.com/showthread.php?t=1053227
TAEL said:
I tried to deodex both of these files with omrij's tool and it was successfull.
http://forum.xda-developers.com/showthread.php?t=1053227
Click to expand...
Click to collapse
I wonder if it ignores certain errors. If i use baksmali with the -I option, i can get deodexed output, But obviously the APK won't work.
sicopat said:
I found many threads of people who can't deodex Email.apk, Mobileprint.apk, even manualy, including every .jar in the baksmali.jar -c: xxxx.
Is there a Dev who could give us the command line to succesfully deodex Email.odex and Mobileprint.odex ?
Thanks
Click to expand...
Click to collapse
I got it done for u method is a bit complicated though
First of all, Thanks!
Second of all, I'm much more interested on how its done rather than the apps themselves. I'd be very happy if you could share how by any means.
ransagy said:
First of all, Thanks!
Second of all, I'm much more interested on how its done rather than the apps themselves. I'd be very happy if you could share how by any means.
Click to expand...
Click to collapse
same here..i guess we just want to learn so please share
thanks
Deodexing is not my favorite stuff I do it for my personal use at times, I use my own set of scripts on linux with custom bootclasspaths.
Would recommend to have a look here: http://code.google.com/p/smali/wiki/DeodexInstructions
mak1 said:
Deodexing is not my favorite stuff I do it for my personal use at times, I use my own set of scripts on linux with custom bootclasspaths.
Would recommend to have a look here: http://code.google.com/p/smali/wiki/DeodexInstructions
Click to expand...
Click to collapse
thanks already read that
mak1 said:
Deodexing is not my favorite stuff I do it for my personal use at times, I use my own set of scripts on linux with custom bootclasspaths.
Would recommend to have a look here: http://code.google.com/p/smali/wiki/DeodexInstructions
Click to expand...
Click to collapse
I also wrote my own deodexing bash script with baksmali/smali/zip. The thing is, Those two APK request java libraries to deodex (java.awt.* and javax.swing.*). I could't find anywhere to get those dependencies from, So if you could share which boot classes you used for satisfying those requirements, it would be great.
Thanks!
I am ready to make a donation for help.
I would like to be able to do it myself
sicopat said:
I am ready to make a donation for help.
I would like to be able to do it myself
Click to expand...
Click to collapse
I have found out how you do it, by checking my bash logs way back
Just use the -I ignore flag on the command, along with regular bootclasspath.
The errors are not an issue and the apps work fine.
Enjoy.
pulser_g2 said:
I have found out how you do it, by checking my bash logs way back
Just use the -I ignore flag on the command, along with regular bootclasspath.
The errors are not an issue and the apps work fine.
Enjoy.
Click to expand...
Click to collapse
Thanks so much Pulser, I am going to try this.
it's Curious we canno't avoid errors.
As promised : donation done
Big thanks
Hi guys, same here with Email.odex...
I'm not be able to deodex it...
Somebody can help me? Thanks!

[Tool] Auto Deodexer for Razr [windows only]

DO NOT APPLY, SOMETHINGS WENT WRONG
BE PATIENT TO SOLVE THE ISSUES
​
​i dont know who made the original file,
but it didn't work on my Razr, so i made some change on it and now it can
deodex All system app/framework directly,
my current system is:
2.3.6_6.5.1-167-SPD-IRD-40_XT910.MERetail.en.06​
Click to expand...
Click to collapse
ATTENTION:
before starting deo.bat, please remove
guava.jar/guava.odex from framework folder, this is a bad file preventing
of normal deodex process, i already did it manually and u can download from attachment
and put it on deodexed-JAR folder
Click to expand...
Click to collapse
is it helpfull? feel free to push - ------------------------------------------------------------------------------------------------------------------------------------ THANKS button here \/
to be continued​
Reserved for future use!
Thanks
oh~ very useful solution.
i'll try it on my Razr.(Korea Razr)
Thanks~
Sent from my XT910 using XDA
what is the advantage of deodexing the razr?
so what should I do with this..? can u please give us a little more detailed instructions on how to use it.. like a step-by-step instructions..
will be very appreciate that.. thanks..
therazrguy said:
what is the advantage of deodexing the razr?
Click to expand...
Click to collapse
Apk files have respective odexes that devs use to supposedly save space. Deodexing means you convert it back to a .dex file and put it back inside the apk. This allows you to easily replace files (not having to worry about odexes), but the main point was to deodex services.jar so that you can change all text to different colors (such as the clock color to white) and to deodex services.jar, you need to deodex everything.
Where to download ? lol
Instruction?
The meaning of this topics?
mopss said:
Where to download ? lol
Instruction?
The meaning of this topics?
Click to expand...
Click to collapse
I'm working on, can u read first line of op?
Sliced by my Razr on Tapatalk
Oops.)
I'm working on, can u read first line of op?
Click to expand...
Click to collapse
In my browser is not the first line ((
Excuse me, ie to see

CRT effect ICS tab 10.1

CRT effect
What is this...
just on/off screen effect.
<iframe width="560" height="315" src="http://www.youtube.com/embed/DBQWuebcxzM" frameborder="0" allowfullscreen></iframe>
http://youtu.be/DBQWuebcxzM
FOR STOCK P7500 USER
download : https://www.dropbox.com/s/stq44gbxzggdz5y/framework-res.zip
How to install
1. unzip file
2. copy to /system
3. permission 644
4. move to system/framework
5. reboot
Nicee brooo :good:
Does this work with stock ICS?
It's for stock user
serosis said:
Does this work with stock ICS?
Click to expand...
Click to collapse
for stock user
NOT test in custom rom...
[update!]
File from 'Stock GT-P7500(3G) ICS ROM'
박찬호 said:
for stock user
NOT test in custom rom...
Click to expand...
Click to collapse
Should have clarified stock ICS for the P7510 but I gave it a shot anyways and it worked like a charm :good:
.:UPDATE:.
Actually the only adverse effect is that it adds menu items and a notification icon for a non-existent 3g antenna.
Based on that I had to uninstall this.
How do I install this
Hi,
I downloaded the framework-res.zip and extracted it which gave me a framework res apk. From what I understand, I have to copy that apk and paste it inside /system, but I did not understand the thing about the permission 644 thing, i tried to look for that but was unable to find it. If someone could guide me or give me more detail, I would be grateful.
Just for extra information, I have a P7500 (3G, UK, XEU), rooted and with CWM Recovery. It is on Stock Samsung Honeycomb 3.2 TouchWiz.
Thanks again in advance.
The CyanogenMod Team needs to add this animation.
maz2001 said:
Hi,
I downloaded the framework-res.zip and extracted it which gave me a framework res apk. From what I understand, I have to copy that apk and paste it inside /system, but I did not understand the thing about the permission 644 thing, i tried to look for that but was unable to find it. If someone could guide me or give me more detail, I would be grateful.
Just for extra information, I have a P7500 (3G, UK, XEU), rooted and with CWM Recovery. It is on Stock Samsung Honeycomb 3.2 TouchWiz.
Thanks again in advance.
Click to expand...
Click to collapse
It's working at 'Stock Samsung Honeycomb 3.2 TouchWiz'?
framework-res.apk is from 'P7500XXLQ8_P7500OXALQ8_ITV[Stock ICS Touchwiz Rom]'...
Thanks to your respond!
jtdo said:
The CyanogenMod Team needs to add this animation.
Click to expand...
Click to collapse
Thanks to your respond!
박찬호 said:
It's working at 'Stock Samsung Honeycomb 3.2 TouchWiz'?
framework-res.apk is from 'P7500XXLQ8_P7500OXALQ8_ITV[Stock ICS Touchwiz Rom]'...
Click to expand...
Click to collapse
Sorry but I think youve mis-understood me. I was asking whether I was able to do this on my 3.2, but after I posted the question I realised its for ICS, sorry for my ignorance. I didnt manage to run it, ands its good i didnt try without double reading.
maz2001 said:
Sorry but I think youve mis-understood me. I was asking whether I was able to do this on my 3.2, but after I posted the question I realised its for ICS, sorry for my ignorance. I didnt manage to run it, ands its good i didnt try without double reading.
Click to expand...
Click to collapse
Ah.. you didn't move the file into /system/framework ?
My English skill isn't good...sorry!
Which program did you use to make this?
I've been trying to recreate this but for the P7510 but APK Multi Tool doesn't want to recompile the apk.
I used the "Apk_Manager"
serosis said:
Which program did you use to make this?
I've been trying to recreate this but for the P7510 but APK Multi Tool doesn't want to recompile the apk.
Click to expand...
Click to collapse
just compile apk, NO SYSTEM APK.
Open the unsignedframework-res.apk and framework-res.apk with 7-zip
unsigned's resources.arsc move to stock framework-res.apk
Don't install the unsignedframework-res.apk..

Does Dsixda's ROM Kitchen work with Galaxy S3?

I've been wanting to try the kitchen out to see if I can try deodexing and zipaligning etc on the stock touchwiz ROM I'm running.
Do you think it would work? (despite it being discontinued)
yes it works still, works on ics & jellybean (i use it myself to deodex and zipalign)
Theshawty said:
I've been wanting to try the kitchen out to see if I can try deodexing and zipaligning etc on the stock touchwiz ROM I'm running.
Do you think it would work? (despite it being discontinued)
Click to expand...
Click to collapse
Yes dxixda kitchen works but you will need to add another file with gs3 parameters in the edify_defs folder with name m0..still the updater-script does not work . It gives me errors in the installing boot.img stage.. . Anyways you can use the kitchen to create your rom and then package your rom manually using updater-script and update-binary from some other working rom.. Then sign it..
If you or anyone finds a solution to that problem do let us know..
:thumbup:
Sent from someone in the Milky Way
zoot1 said:
but you will need to add another file with gs3 parameters in the edify_defs folder with name m0
Click to expand...
Click to collapse
Where do I find such file?
zoot1 said:
Yes dxixda kitchen works but you will need to add another file with gs3 parameters in the edify_defs folder with name m0..still the updater-script does not work . It gives me errors in the installing boot.img stage.. . Anyways you can use the kitchen to create your rom and then package your rom manually using updater-script and update-binary from some other working rom.. Then sign it..
If you or anyone finds a solution to that problem do let us know..
:thumbup:
Sent from someone in the Milky Way
Click to expand...
Click to collapse
I have a file for myself will upload it here once I reach home.. On my way back.. Hopefully you can see what is wrong.. I tried to get help from wanam also but we could not find the problem..
Edit: here you go..put the m0 file in the edify_defs folder..check if you can find any problem with it..
Sent from someone in the Milky Way
zoot1 said:
I have a file for myself will upload it here once I reach home.. On my way back.. Hopefully you can see what is wrong.. I tried to get help from wanam also but we could not find the problem..
Edit: here you go..put the m0 file in the edify_defs folder..check if you can find any problem with it..
Sent from someone in the Milky Way
Click to expand...
Click to collapse
I don't know anything about stuff like that
I'm a complete noob and just wanna try to deodex and stuff
Theshawty said:
I don't know anything about stuff like that
I'm a complete noob and just wanna try to deodex and stuff
Click to expand...
Click to collapse
Deodexing will work just fine..no probs..some times you might get an error with one or two apps..just use the option to deodex a single app and you will be good to go..
:good:
Edit:
Most important change the api level to 16 before deodexing..
just make a copy of your zipped rom, drop it into the working folder, deodex the files you want to and then pull those files out of the working folder and drop them into the original rom zip folder (minus the original odexed files)
no need to change anything, no need to drop new files in or mess with update script
as you will use your existing update script/meta inf folder blah blah blah, it means you can say yes to the mods the kitchen wants to make as you will only be taking the deodexed files from there, nothing else
(does that make sense? - im guessing you will ignore this anyway like my previous post))
Darkside Agent said:
just make a copy of your zipped rom, drop it into the working folder, deodex the files you want to and then pull those files out of the working folder and drop them into the original rom zip folder (minus the original odexed files)
no need to change anything, no need to drop new files in or mess with update script
as you will use your existing update script/meta inf folder blah blah blah, it means you can say yes to the mods the kitchen wants to make as you will only be taking the deodexed files from there, nothing else
Click to expand...
Click to collapse
Thanks, will try this.
Darkside Agent said:
(does that make sense? - im guessing you will ignore this anyway like my previous post))
Click to expand...
Click to collapse
Uh, sorry about that. I totally missed your post!
Did you get it all sorted in the end?
Darkside Agent said:
Did you get it all sorted in the end?
Click to expand...
Click to collapse
Nah, I basically said "f*ck it and deleted the whole thing.
Gonna let someone else deal with zipaligning, deodexing and all that.
Theshawty said:
Nah, I basically said "f*ck it and deleted the whole thing.
Gonna let someone else deal with zipaligning, deodexing and all that.
Click to expand...
Click to collapse
You need Patience my friend..
zoot1 said:
You need Patience my friend..
Click to expand...
Click to collapse
One of many things I lack and will probably always lack.
Sorry for dragging out an old thread but I thought I would have a go with this. I have the kitchen installed, I have put I9300XXDLI5_I9300OXADLI5_I9300XXDLI5_BTU.zip in the original_update and have the m0 file in tools/edify_defs
I then try and extract the ROM but I get an error Error: No system folder found!
How can I not even get started? I must be missing something basic here!
Kangburra said:
Sorry for dragging out an old thread but I thought I would have a go with this. I have the kitchen installed, I have put I9300XXDLI5_I9300OXADLI5_I9300XXDLI5_BTU.zip in the original_update and have the m0 file in tools/edify_defs
I then try and extract the ROM but I get an error Error: No system folder found!
How can I not even get started? I must be missing something basic here!
Click to expand...
Click to collapse
IIRC, the archive file must be a tar archive containing at least a system.img.
Sent from my GT-I9300 using Tapatalk 2
Theshawty said:
IIRC, the archive file must be a tar archive containing at least a system.img.
Sent from my GT-I9300 using Tapatalk 2
Click to expand...
Click to collapse
Can't I start with the ODIN file of the leaks? It must have a system image in it? Where do you start with this? I thought a whole flashable ROM would be ideal.
Kangburra said:
Can't I start with the ODIN file of the leaks? It must have a system image in it? Where do you start with this? I thought a whole flashable ROM would be ideal.
Click to expand...
Click to collapse
Extract the tar file and put the system.ext4.img and boot.img in the update folder.. Then Dxixda kitchen will recognize it..
Sent from the iPoop killer ==>>>
Kangburra said:
Can't I start with the ODIN file of the leaks? It must have a system image in it? Where do you start with this? I thought a whole flashable ROM would be ideal.
Click to expand...
Click to collapse
Oh yeah, I forgot, the system.img must be coverted from yaffs img to an ext4 file. I believe the utility is called ext2fs (or something like it)
Dsixda's tool should provide that program anyhow.
Well I unzipped the ROM and untarred the md5 and then it at least got me started. I am now just working out what I can do and what I need to get. Thanks for your help.
[edit]Well I built the ROM and tried both the update and updater scripts but both fail. Will go and re-read the help. [/edit]
Kangburra said:
Well I unzipped the ROM and unatarred the md5 and then it at least got me started. I am now just working out what I can do and what I need to get. Thanks for your help.
[edit]Well I built the ROM and tried both the update and updater scripts but both fail. Will go and re-read the help. [/edit]
Click to expand...
Click to collapse
Well that is the problem which I am not to work out yet.. As Dxixda kitchen does not support s3
Best way it to use meta-inf folder from other rom..
Sent from the iPoop killer ==>>>

Full Deodexed Galaxy Note 4 Dump

This is deodexed dump of Note 4 Rom (app, framework and priv-app folders).
All credits goes to @_alex74_ that deodex the rom and upload it.
Download Here!
Original dump of @newwhitecat
Albe95 said:
This is deodexed dump of Note 4 Rom (app, framework and priv-app folders).
All credits goes to @_alex74_ that deodex the rom and upload it.
Download Here!
Click to expand...
Click to collapse
sorry, but why do some deodex when you can just delete odex_files (inside apk classes.dex already have)?
Pako7 said:
sorry, but why do some deodex when you can just delete odex_files (inside apk classes.dex already have)?
Click to expand...
Click to collapse
All the work was made by alex.. I've only shared it.
Albe95 said:
All the work was made by alex.. I've only shared it.
Click to expand...
Click to collapse
can show all folder present in this pack? THX
puoi fare uno screen di tutte le cartelle presenti nel pacchetto?
ma un server piu veloce?? in italia si raggiunge massimo 50 kb in download O_O
Annoying download takes hours. ..albe can u share akkuweather widget and deamon. .? Thanks
??PROJECT X ROM ?4.4.4 LMS??
Albe95 said:
This is deodexed dump of Note 4 Rom (app, framework and priv-app folders).
All credits goes to @_alex74_ that deodex the rom and upload it.
Download Here!
Click to expand...
Click to collapse
How can it be used on Note 2? Flash it or what? Thank you!
edsoedso said:
How can it be used on Note 2? Flash it or what? Thank you!
Click to expand...
Click to collapse
You can't, it's not for that device, at most you could take some apps and "try" to get them working. But there may be dependencies that the apps need that your device may not have.
Pako7 said:
sorry, but why do some deodex when you can just delete odex_files (inside apk classes.dex already have)?
Click to expand...
Click to collapse
which kind of question is?
there are themers and developers that deodexes apk, which for entire rom takes one hour, and you asking about classes.dex????
of course you have lot of learn, i say lot before going on on this subject.....
i suggest you to be active in general forums
_alex74_ said:
which kind of question is?
there are themers and developers that deodexes apk, which for entire rom takes one hour, and you asking about classes.dex????
of course you have lot of learn, i say lot before going on on this subject.....
i suggest you to be active in general forums
Click to expand...
Click to collapse
I'm just saying that it is sufficient to remove all odex-files and will be deodexed firmware (as dex-components is within the APK). Or do you want to say that nobody knows here? :laugh:
Pako7 said:
I'm just saying that it is sufficient to remove all odex-files and will be deodexed firmware (as dex-components is within the APK). Or do you want to say that nobody knows here? :laugh:
Click to expand...
Click to collapse
muahahaha if so why then deodexing script exists?
have you ever tryed to compare smali files that are into classes.dex in an apk if are the same as in its odex file?
if same you can freely remove odex.....
Your solution maybe can work for some apks but is not recommended(absolutely for system apps), especially when you try to port apk and features..... so stop saying wrong suggestions, otherwise we will have dozen of users blaming and crying for apk FC.
And a lot of developers being seen idiots cause they have written deodex scripts???
read, read and read again
i see yuor career as developer muahahaha
_alex74_ said:
have you ever tryed to compare smali files that are into classes.dex in an apk if are the same as in its odex file?
Click to expand...
Click to collapse
yes..compare.. its was the same agree, it is possible that not all apk thus will earn
and three times the same link I do not have to give - not blind unlike some
Albe95 said:
This is deodexed dump of Note 4 Rom (app, framework and priv-app folders).
All credits goes to @_alex74_ that deodex the rom and upload it.
Download Here!
Click to expand...
Click to collapse
Can you upload (or share the link if already exists) original ROM?
If these packages were really deodexed then it's really bad! ART compatible ROMs don't require deodex at all. Just delete odex files. APK/JAR have dex inside.
But after deodexing many class references are tampered because of deodexer technics.
---------- Post added at 08:00 PM ---------- Previous post was at 07:35 PM ----------
Oh, common.. Where is lib, etc, vendor folders? Such a wasted download...
System APKs require libraries and don't include them inside package. So, this "dump" is mostly useless...
sorg said:
Can you upload (or share the link if already exists) original ROM?
If these packages were really deodexed then it's really bad! ART compatible ROMs don't require deodex at all. Just delete odex files. APK/JAR have dex inside.
But after deodexing many class references are tampered because of deodexer technics.
Click to expand...
Click to collapse
Here you're the link http://inclu.net:82/SAMSUNG/Galaxy Note 4/20149021/#upload
It's not entire rom (only app,priv-app,lib and framework fold).
Did anyone find utility to convert qmg<->png graphics? Starting from Android 4.4.4 Samsung uses QMG images instead of PNG.
I'm not talking about official samsung theme creator. When you need to convert hundred of images - only command-line utility can help.
Nope
??PROJECT X ROM ?4.4.4 LMS??
One little request: please upload media folder here (or ringtones and notifications only). I'm at work right now, and cannot download big files (such as this dump). Thanks.
Pavlova said:
One little request: please upload media folder here (or ringtones and notifications only). I'm at work right now, and cannot download big files (such as this dump). Thanks.
Click to expand...
Click to collapse
From Korean variant or Chinese rom? I've just download and extract chinese rom.
Nevermind, you just did it, few posts before. Thank you again.
sorg said:
Did anyone find utility to convert qmg<->png graphics? Starting from Android 4.4.4 Samsung uses QMG images instead of PNG.
I'm not talking about official samsung theme creator. When you need to convert hundred of images - only command-line utility can help.
Click to expand...
Click to collapse
why is it you? after all you know how to do it myself
Albe95 said:
This is deodexed dump of Note 4 Rom (app, framework and priv-app folders).
All credits goes to @_alex74_ that deodex the rom and upload it.
Download Here!
Click to expand...
Click to collapse
Hey. I want you to leave my name on your post.
The orgin files are mine.

Categories

Resources