Lol .....my fault ...when i saw something like that i just ran out to see it for android ...
Sent from my HTC Wildfire using xda app-developers app
Sent from my HTC Wildfire using xda app-developers app
As far as I know, they run in background because its an instant messaging app and if its not continuously running, we won't receive messages as soon as they are sent to us.. Right?After some testing, same APK's with compressed resources.arsc use more ram for about the size of resources.arsc
My guess is that probably asset manager needs to decompress resources.arsc in ram...
So system apk's and apps like FaceBook, Viber, Whatsapp & Widgets should always have resources.arsc uncompressed as they are always running in background when you're doing nothing with phone...
Yes...As far as I know, they run in background because its an instant messaging app and if its not continuously running, we won't receive messages as soon as they are sent to us.. Right?
Sent from my Xperia Neo V using xda premium
Hey, great tool. Could you add a feature to keep resources for single dpi? eg. if framework-res.apk contains wallpapers for ldpi, hdpi, etc. it'd keep only hdpi, but if ldpi contains file which doesn't have hdpi it will keep it as well.UPDATE 2013-09-13 v1.21
- Further improved MT PNG optimization
- Added -s2 option so you can try removing debugging info using smali/baksmali v2 beta if default v1.4.2 fails
- ReWorked compression levels; Read Extra Help; -he or -hh option
- Updated TruePNG to 0.4.0.8
- Updated CygWin Tools
- Lots of "can't remember right now" minor fixes
Next to do thing is probably APK ReSigning so you don't need to have ROM patched or ReSign APK's for installing normal apps.
But I find it easier to patch ROM using Lucky Patcher not to check signatures...
Don't have time right now but I will give it a try next month.Hey, great tool. Could you add a feature to keep resources for single dpi? eg. if framework-res.apk contains wallpapers for ldpi, hdpi, etc. it'd keep only hdpi, but if ldpi contains file which doesn't have hdpi it will keep it as well.
Yes...i don't really understand about this stuff yet i wanna try it,
is this : -m8 -zb -a0 -d5 -b15 -k1 -l5 -r5 *.apk; good enough to get both optimized png and compressed for system and non system apk ?
then how about CM 10.1 ?Yes...
-b15 is removing debugging info for ICS
-k1 will remove all libs except for armeabi (check that you don't need armeabi-v7a)
For non system apps you need to use -t option or patch rom with Lucky Patcher not to verify signatures...
My script optimizes png's better but multi-apktool compresses resources.arsc which results smaller files but more ram usage because android asset manager needs to decompress resources.arsc before accessing it (which it doesn't when it's uncompressed)then how about CM 10.1 ?
apparently, i'm using it on cm 10.1, looks like it doesn't reduce the size pretty well, i mean, the size reduced was small compared to apk multi tool with optimized png + zipalign.
right now my free space on system is 26 MB with 73 apk files, i can't odex all of them, need more compression, could you give me a suggestion?
over all, i'm satisfied enough with this tools :victory:, its was easy to use and with only 1 click, do all the job while i'm enjoying a cup of tea
hmm it's true, i feel this more faster than i do optimizing and compress with apk multi toolMy script optimizes png's better but multi-apktool compresses resources.arsc which results smaller files but more ram usage because android asset manager needs to decompress resources.arsc before accessing it (which it doesn't when it's uncompressed)
you can try -a1 option to light compress resources.arsc (instead -a0)
all Google Play apps have resources.arsc uncompressed except FaceBook because it's 7MB (2MB compressed)
and when I uncompress resources.arsc FB starts faster....
NPhmm it's true, i feel this more faster than i do optimizing and compress with apk multi tool
well, i still can use the phone without odexing them
and i already use a2sd
thank you for your advice.
Only if you add new PNG's...Nice Tool :good:
I achieved compression of my themes of -20%
Just one question:
If I GOptimized my theme/app and then later decompile, modify and compile again: do I have to GOptimize it again?
Thanks
You can... but you can't remove debug info from odexed jar because there is no dex file in it...Sorry for the silly question
but before using the script I read the thread, and wonder myself (after the discussion on the .jar files)
If I have to use the script on deodexed apps only or I can use it on the apk portion of the app when it is odexed?
Thanks a lot for the info