APKTOOL scripts for Windows (updated) - Android Themes

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
So, I figured I would share something that I made along with the help of another developer friend @dwitherell
You must have apktool setup in the Windows path to run from anywhere
How it works:
unzip files
copy the scripts folder to the root of c:\
double click compile.reg and decompile.reg, this will add the entries to the registry
You can decompile and compile up to 10 at once. Not sure why its limited to 10.
This is tested working on Windows 10. Please let me know if it works for other versions as I will add that to the description.
Please do NOT ask how to setup apktool, you need to already know that much.
whats included in the zip...
compile.reg
decompile.reg
Maximum level of decompiling raised (V2)
scripts folder containing both .bat files
Download it here
Download V2 with raised level of decompiling here
Now to use it:
On an apk, right click and you will see a new option called Decompile. Select that, then it will decompile it in the folder you currently are
On an already decompiled apk folder, right click and Compile option will appear. Select that and it will compile the apk
Maxed_Apktool.reg
Code:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer]
"MultipleInvokePromptMinimum"=dword:00000999
thanks @Licaon_Kter for the addition.
decompile.reg
Code:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\Run script]
@="Run &script"
[HKEY_CLASSES_ROOT\*\shell\Decompile\command]
@="\"C:\\scripts\\decompile2.bat\" \"%1\""
decompile2.bat
Code:
@echo off
set args=%*
setlocal enableDelayedExpansion
set "cmd=!cmdcmdline!"
set "cmd2=!cmd:*%~f0=!"
set "args=!cmd2:~0,-1! "
set "args=!args:* =!"
for %%F in (!args!) do (
if "!!"=="" endlocal
apktool.bat d -f "%%~F"
)
PAUSE
compile.reg
Code:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\Run script]
@="Run &script"
[HKEY_CLASSES_ROOT\Folder\shellex\ContextMenuHandlers\Compile\command]
@="\"C:\\scripts\\compile.bat\" \"%1\""
[HKEY_CLASSES_ROOT\Directory\shell\Compile\command]
@="\"C:\\scripts\\compile.bat\" \"%1\""
compile.bat
Code:
@echo off
set args=%*
setlocal enableDelayedExpansion
set "cmd=!cmdcmdline!"
set "cmd2=!cmd:*%~f0=!"
set "args=!cmd2:~0,-1! "
set "args=!args:* =!"
for %%F in (!args!) do (
if "!!"=="" endlocal
apktool.bat b -f "%%~F"
)
PAUSE

Awesome I'll have to try this later ?

Great thank you!

Amazing work! Can I recompile an apk which hasnt been decompiled with this method? I've the folder so I can recompile?

I got it set up and running last night, works great! Makes things easier and faster. Just make sure you have apktool up and running correctly first.

DOWNLOADING for further test.. i'll report back later
thanks..

Has.007 said:
Amazing work! Can I recompile an apk which hasnt been decompiled with this method? I've the folder so I can recompile?
Click to expand...
Click to collapse
No, it has to be decompiled to recompile it again.

What is the newest version of APKtool? I found 2.2.2 on the site, but it seems to have issues with the Nougat files for my LG V20.
I've used it on Windows 10 and Ubuntu, same results.

NotATreoFan said:
What is the newest version of APKtool? I found 2.2.2 on the site, but it seems to have issues with the Nougat files for my LG V20.
I've used it on Windows 10 and Ubuntu, same results.
Click to expand...
Click to collapse
https://www.dropbox.com/s/rtv489v0gkfp0y9/apktool2.zip?dl=0
Try that one. It says dirty, but that hasn't affected anything. I got that from somewhere when the v20 first came out.
And its what i am using for my v20 work. So i know that one will work.

cbucz24 said:
https://www.dropbox.com/s/rtv489v0gkfp0y9/apktool2.zip?dl=0
Try that one. It says dirty, but that hasn't affected anything. I got that from somewhere when the v20 first came out.
And its what i am using for my v20 work. So i know that one will work.
Click to expand...
Click to collapse
Thanks! Have you done anything with SystemUI? I ran into issues after modifying it for 3Minit support.

NotATreoFan said:
Thanks! Have you done anything with SystemUI? I ran into issues after modifying it for 3Minit support.
Click to expand...
Click to collapse
I haven't rooted. I ran into some issues so i gave up.
I havent tried any mods.

cbucz24 said:
I haven't rooted. I ran into some issues so i gave up.
I havent tried any mods.
Click to expand...
Click to collapse
Oh OK. I'll give yours a shot and see if it works.

NotATreoFan said:
Oh OK. I'll give yours a shot and see if it works.
Click to expand...
Click to collapse
Ok let me know if you have any issues. I'll try an help

cbucz24 said:
[*]You can decompile and compile up to 10 at once. Not sure why its limited to 10.
Click to expand...
Click to collapse
Try this: https://support.microsoft.com/en-us...hortened-when-more-than-15-files-are-selected and put 999

Licaon_Kter said:
Try this: https://support.microsoft.com/en-us...hortened-when-more-than-15-files-are-selected and put 999
Click to expand...
Click to collapse
Good find. Ill try that and see what happens.
According to the link it should be 15 not 10. I'm not at my pc now to test it.
But it says if you change it to 16, that's Microsoft's unlimited amount.
Maybe i can incorporate that into my registry mods.

Hi all, if this can decompile and re compile, can i change or modify a camera app to support 1440x2560 for lg g3 ? It currently only display well in 1080x1920, so i have to downgrade my display setting. Can someone be kind enough to direct me to which files or folder to begin with and do i have to create or modify some xml code ? Thanks

Jason Looi said:
Hi all, if this can decompile and re compile, can i change or modify a camera app to support 1440x2560 for lg g3 ? It currently only display well in 1080x1920, so i have to downgrade my display setting. Can someone be kind enough to direct me to which files or folder to begin with and do i have to create or modify some xml code ? Thanks
Click to expand...
Click to collapse
You're going to have to search for some camera mods. This can decompile the apk sure. But I've never edited the camera.

Thanks, nice tool.

cbucz24 said:
You're going to have to search for some camera mods. This can decompile the apk sure. But I've never edited the camera.
Click to expand...
Click to collapse
thanks man appreciated it..

cbucz24 said:
Ok let me know if you have any issues. I'll try an help
Click to expand...
Click to collapse
Would you mind taking a look at these decompiled SystemUI APKs? I can compile the US_LG one fine, and also the TMO one. But the ATT one tells me there's missing resources, but all the edits made and files added are identical.

Related

**Drizzys Lockscreen Port** Updated for 2.9

Clear Lock Screen Only
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
http://www.4shared.com/file/146988942/737c22d2/clearlockscreen29.html
Enjoy
Oh my... Where to get the wallpaper only?
The wallpaper can be found here. Not lockscreen resolution though.
By the way thanks a lot ratcom.
Sweet!
Cheers bro, keep up the good work!
is it somehow possible to have also a own backgroud image (set through settings)?
just use whatever wallpaper you want. This update is for the lockscreen icon not the wallpaper!
help
thanks for your work.
can you explain how to do that?
which file to edit? and how to make it an update file?
good day!
Brilliant, thanx for putting these together.
Would it be possible to remove the transparent box at the bottom of the screen when u touch it or recieve notification? The one that the slide down to unlock txt is on.
i love this lockscreen but im with djmace 100%, if you can remove the darker transparent box that appears when you get a text or if you touch the screen it would be absoulutly perfect
please please please
ypyp said:
thanks for your work.
can you explain how to do that?
which file to edit? and how to make it an update file?
good day!
Click to expand...
Click to collapse
I would be very interested in this also!
Thanks man!
I unpacked the update to see how this worked and in the lockscreen folders, the graphics have all been blanked out apart from lockscreen_prompt_back.png.
I'm guessing if you made this one blank as well the transparent box would become clear too. I'd test it but need to learn how to sign apk files again first.
Can u confirm ratcom? Good work anyway!
sounds like you're onto something, can someone please try this as I havent the foggiest idea where to even start trying
I'l love you forever
pookie1 said:
I unpacked the update to see how this worked and in the lockscreen folders, the graphics have all been blanked out apart from lockscreen_prompt_back.png.
I'm guessing if you made this one blank as well the transparent box would become clear too. I'd test it but need to learn how to sign apk files again first.
Can u confirm ratcom? Good work anyway!
Click to expand...
Click to collapse
this was posted by ratcom as to how ti sign the apk's again
I found these instruction here http://forum.xda-developers.com/showthread.php?t=467639
Quote:
Before using this you need to know how to set this up:
I will assume that you have the sdk downloaded and extracted somewhere(if not, do that now), extract both files to the tools directory of your sdk.
Now you will need to add the tools dir of your sdk to the environment variable CLASSPATH.(seem to work with windows 7)
To do this, right click on My Computer click properties, then choose the tab that says advanced. Click the button that says environmental variables. Go to system variables find the one that says CLASSPATH, double click it, go to the end of variable value. There should be a semicolon ; at the end. type in the path to the testsign.jar located in the tools directory of your SDK, for example the path to my testsign.jar was c:\sdk\android-sdk-windows-1.0_r1\tools\testsign.jar If CLASSPATH is not in your system variables then create it. Secondly, Find the system variable called PATH and add to the end of it, the full path to your sdk directory. For example, mine was c:\sdk\android-sdk-windows-1.0_r2\tools
Now right click the reg file that you extracted and choose to install it, or merge.
Now, right click an apk, do you see an option that says ResignApk? That's how you will resign your .apks and .zips.
If you find the right click menu not working for some reason you can type the following in cmd to sign your files: java testsign whateverfiletosign
Now through doing this you have done two things, first off you have made the resigning process extremely easy, secondly you will not have to cd to the tools dir of the sdk to use adb or any other tool in the sdk.
does anyone that knows what they're doing fancy giving this ago?
Il try when i get home but dont count on me
Thanks for that djmace.
I will test my theory asap, hopefully will have some time to try this afternoon.
pookie1 said:
Thanks for that djmace.
I will test my theory asap, hopefully will have some time to try this afternoon.
Click to expand...
Click to collapse
I tried last nite but they failed to work. Then this morning I took another look and think that i have found my problem. I copied and pasted the file path from above as my classpath, however i have the 1.5 sdk so therefore need to change that. Won't get chance till I tonite though.
Nice one, cant wait for this, good luck!
Ok I managed to make the changes I wanted, but that file I mentioned is not the one responsible for the transparent block. I'll see if I there is anything else that might be causing it, but nothing jumps out after a quick glance over the files.
But at least I learned a lot
pookie1 said:
Ok I managed to make the changes I wanted, but that file I mentioned is not the one responsible for the transparent block. I'll see if I there is anything else that might be causing it, but nothing jumps out after a quick glance over the files.
But at least I learned a lot
Click to expand...
Click to collapse
Agh poooo!!! lol
Actually looking at the file its curved at the top so was a long shot anyway. Saying that though, i cant find any other file that could be the one we want either.
My next thought is that it is actuall drawn by an xml file. There is a file in the layout folder called htc_locks_creen_control.xml that could hold the answer but i have no idea how to view what is written in the xml.
djmace said:
Agh poooo!!! lol
Actually looking at the file its curved at the top so was a long shot anyway. Saying that though, i cant find any other file that could be the one we want either.
My next thought is that it is actuall drawn by an xml file. There is a file in the layout folder called htc_locks_creen_control.xml that could hold the answer but i have no idea how to view what is written in the xml.
Click to expand...
Click to collapse
is this of and help?
http://www.w3schools.com/xmL/xml_view.asp

[RES] SHUTDOWN ANIMATION (downanimation.zip) for SENSE based rom

Many of us tried to replace "downanimation.zip" which reside in (/system/customize/resource/) but ended with blank screen no matter how u pack the zip.
After countless try & error, here is the solution. The structure & format is remain the same as "bootanimation.zip" which will works if packed without compression (store compression level).
The only different is the way we zip as shown below.
# Running Linux :
* The correct zip command (im using latest Ubuntu on VirtualBox) is zip -0rD downanimation.zip <image folder> + desc.txt
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
# Running Windows :
* Windows using WinRAR :
1-Create zip like this
2- recreate the zip file but this time ignore file parameters in 2nd scrnshot.
3- open using winrar & delete all image files outside folder.
Thanks.
My modded one. This is not flashable zip. Must use ADB/QtADB to copy to device manually.
< restart/shutdown animation | startup/boot/loading animation as well >
How about using windows? and winrar maybe?
gui winrar on windows method added
monx® said:
gui winrar on windows method added
Click to expand...
Click to collapse
I have tried and still dont have a shutdown animation :-(
liamstears said:
I have tried and still dont have a shutdown animation :-(
Click to expand...
Click to collapse
after u create the zip file in 1st step (using winrar), recreate again but ignore the files parameter. open the zip file using winrar & delete all image files outside folder.
monx® said:
after u create the zip file in 1st step (using winrar), recreate again but ignore the files parameter. open the zip file using winrar & delete all image files outside folder.
Click to expand...
Click to collapse
I have tried a couple times without success
Can you take a look for me??
liamstears said:
I have tried a couple times without success
Can you take a look for me??
Click to expand...
Click to collapse
recreated using winrar on windows. see my updated post #1 mate
monx® said:
recreated using winrar on windows. see my updated post #1 mate
Click to expand...
Click to collapse
Thanks for this but it still doesnt seem to work :-(
It takes longer to turn off now thought and 4 buttons are now on when turning off but still no image :-(
liamstears said:
Thanks for this but it still doesnt seem to work :-(
It takes longer to turn off now thought and 4 buttons are now on when turning off but still no image :-(
Click to expand...
Click to collapse
weird. im currently running mike's revo 2.09 & tested working fine. can u double check the file location mate.
monx® said:
weird. im currently running mike's revo 2.09 & tested working fine. can u double check the file location mate.
Click to expand...
Click to collapse
i have /system/customize/resource
i hv no idea now. see this
http://www.youtube.com/watch?v=2wMswV1zXOc
u can ignore the smoke in last frames. its not from ur animation, its real smoke bcoz im smoking while capturing this video
monx® said:
i hv no idea now. see this
http://www.youtube.com/watch?v=2wMswV1zXOc
u can ignore the smoke in last frames. its not from ur animation, its real smoke bcoz im smoking while capturing this video
Click to expand...
Click to collapse
video private....
maybe mike changed somerthing in the beta im running
are you using same file name as uploaded?
liamstears said:
video private....
maybe mike changed somerthing in the beta im running
are you using same file name as uploaded?
Click to expand...
Click to collapse
video can be seen now. yes same file name.
or maybe u can try convert the jpg to png format. (but mine still jpg)
monx® said:
video can be seen now. yes same file name.
or maybe u can try convert the jpg to png format. (but mine still jpg)
Click to expand...
Click to collapse
I got it to work!
Only seems to work if I adb push the file, using root explorer to copy over or using a flashable zip didnt work but adb did!
very happy, thanks for all your help! :-D
liamstears said:
I got it to work!
Only seems to work if I adb push the file, using root explorer to copy over or using a flashable zip didnt work but adb did!
very happy, thanks for all your help! :-D
Click to expand...
Click to collapse
u r welcome. glad to see it works & thanks for the info regarding using adb. so it need 'root' to be the file owner
Sweet! Thanks a lot, will use it.
here is one that i modded.. its not mine i just edited the file names to go backwards!
oh and in mobile its far better than this lol!
As a total noob, I'd be incredibly grateful if someone could post a step-by-step for me. Would make my phone finally completely customized.
monx® said:
u r welcome. glad to see it works & thanks for the info regarding using adb. so it need 'root' to be the file owner
Click to expand...
Click to collapse
For information, the file copied by Root Explorer has the default
owner: system
group: sdcard_rw
so not root owner. Need to go to terminal and use chown command!

[APKTOOL ICS + JB] [Works wonders] [UPDATED]

Check the read me inside the file.
Automatically grabs framework-res.apk for you and has some tips for folder organisation while working.
Let me know how this works for you.
If you're using the old version delete it entirely and use this one. Don't forget to update your framework files if you move to Jelly Bean development.
New Version:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Kryten2k35 Apktoolv3
http://www.alpha-techs.co.uk/files/matt/mods/apktool/apktoolv3.zip
Old Version - Possible errors. Don't use!
http://www.alpha-techs.co.uk/files/matt/mods/apktool/apktoolv2.rar
http://www.alpha-techs.co.uk/files/matt/mods/apktool/apktool.rar
uhm this has been working for ages like this
Thanks for the share.. works great.
Yep I need this as well thanks
Sent from my GT-I9300 using xda premium
Robbie Hood said:
uhm this has been working for ages like this
Click to expand...
Click to collapse
I tried afair few and many wouldn't work or threw up errors. Some wouldn't decompile with the classes.dex in there (meaning you couldn't get to the smali files).
I'd been looking around for ages and stumbled upon this. Credit really does go to whoever I downloaded it from initially but I have no idea who it is! The Read_Me.txt is my own!
Thread updated. Please delete the old version if you got that one.
how i can solve ?
great share!thank you so much for the great job.
sarperkaya said:
how i can solve ?
Click to expand...
Click to collapse
Looks like something you changed isn't compiling?
You should run it like the commands in the Read_Me because java -jar apktool.jar aren't the commands I tested with. The apktool.bat does things different to that was well
Try this:
Hold shift and right click in that folder. Choose "Open command window from here" and type apktool b secsettings new/SecSettings.apk
That will put your built apk in a folder called "new". Though I really do prefer the way I laid out there.
Kryten2k35 said:
Looks like something you changed isn't compiling?
You should run it like the commands in the Read_Me because java -jar apktool.jar aren't the commands I tested with. The apktool.bat does things different to that was well
Try this:
Hold shift and right click in that folder. Choose "Open command window from here" and type apktool b secsettings new/SecSettings.apk
That will put your built apk in a folder called "new". Though I really do prefer the way I laid out there.
Click to expand...
Click to collapse
thanks but didnt work
Kryten2k35 said:
I tried afair few and many wouldn't work or threw up errors. Some wouldn't decompile with the classes.dex in there (meaning you couldn't get to the smali files).
I'd been looking around for ages and stumbled upon this. Credit really does go to whoever I downloaded it from initially but I have no idea who it is! The Read_Me.txt is my own!
Click to expand...
Click to collapse
Ah ok might be because we have our own compiled apktool at alliance and maybe this is it
I cant remember for how long i have been using apktool to decompile classes.dex.
Not sure if this is ours , but good job in sharing for the masses here
sarperkaya said:
thanks but didnt work
Click to expand...
Click to collapse
Try swapping the compile and decompile around, then? I had to do that earlier for some reason.
When I've got used to debugging I'll be able to help more!
Sent from my GT-I9300 using xda premium
It's the 1.4.2 and 1.4.4 versions of apktool I've added some more to the .rar though, some automation for example! There is a "how to decompile" pages on here I got some info from.
I'm still learning this stuff though. If you know any good resources and some reading material I'd be super grateful!
Sent from my GT-I9300 using xda premium
Kryten2k35 said:
It's the 1.4.2 and 1.4.4 versions of apktool I've added some more to the .rar though, some automation for example! There is a "how to decompile" pages on here I got some info from.
I'm still learning this stuff though. If you know any good resources and some reading material I'd be super grateful!
Sent from my GT-I9300 using xda premium
Click to expand...
Click to collapse
What kind of info are u lookin for mate ?
---------- Post added at 03:50 AM ---------- Previous post was at 03:47 AM ----------
http://db.tt/wo1XSzuf
Here is our alliance apktool compiled by ficeto. Not sure if it differs from what u have gathered but we have been using this since release of ics and like i said cant remember the last time i needed to take classes.dex out an apk for decompiling.
Robbie Hood said:
What kind of info are u lookin for mate ?
---------- Post added at 03:50 AM ---------- Previous post was at 03:47 AM ----------
http://db.tt/wo1XSzuf
Here is our alliance apktool compiled by ficeto. Not sure if it differs from what u have gathered but we have been using this since release of ics and like i said cant remember the last time i needed to take classes.dex out an apk for decompiling.
Click to expand...
Click to collapse
Anything to help me on my way, understanding the XML documents and themeing in general. Then I'll want to move onto programming properly, maybe even writing a few apps! I'll start with theming and the XML docs though!
Kryten2k35 said:
Anything to help me on my way, understanding the XML documents and themeing in general. Then I'll want to move onto programming properly, maybe even writing a few apps! I'll start with theming and the XML docs though!
Click to expand...
Click to collapse
I think you can find enough documentation about theming here on xda.
The xmls are quite logical if u take your time to read .
Offcourse there is android open source project home page where u can find refferences on what all tags mean and do .
http://developer.android.com/
Http://source.android.com/
I wouldnt know where to start if u ask such a global question
No that's great! Cheers!
Sent from my GT-I9300 using xda premium
Not working properly
manikant_009 said:
Not working properly
Click to expand...
Click to collapse
Any more information than that?
Updated to apktool 1.5 - No more swapping files!
Don't forget to update your framework files if you move to Jelly Bean development.

[Guide / LP 5.1.1] Decompile and recompile your apk (Windows) (Update 10/09)

1) Use Advanced ApkTool v4.1.0 and install it on your computer,
2) Download apktool v2.0.1 and rename it apktool.jar,
2) Replace the old apktool.jar by the new one in 1-BDfreak,
3) Launch Advanced ApkTool, install the framework, decompile your apk, do your modifications, recompile with sign and zipalign,
4) Open your new apk (with winrar for instance) and replace the META-INF folder and androidmanifest.xml by the ones of your old apk.
That's all
thanks..can you tell me what zipalign means and does? because previously i was just doing recompile and sign and i wasnt getting any problems
arismelachrinos said:
thanks..can you tell me what zipalign means and does? because previously i was just doing recompile and sign and i wasnt getting any problems
Click to expand...
Click to collapse
Just google it
zipalign is an archive alignment tool that provides important optimization to Android application (.apk) files. The purpose is to ensure that all uncompressed data starts with a particular alignment relative to the start of the file. Specifically, it causes all uncompressed data within the .apk, such as images or raw files, to be aligned on 4-byte boundaries. This allows all portions to be accessed directly with mmap() even if they contain binary data with alignment restrictions. The benefit is a reduction in the amount of RAM consumed when running the application.
Nice guide bro. Btwn signing and zip align is not necessary..
Brothers
Tray AWESOME tool @Ticklefish
Tickle My Android 10.2 - The Best Android Theming Tool...EVER!! by
Its sign app without any problems
I have used this method, but soon as you copy from the original application AndroidManifest.xml that some values do not work. This also limits the modification miozliwosci app
Better use apktool v2.0.0 SnapShot
@Ticklefish again thanks YOU ARE AWESOME
Ambor said:
Brothers
Tray AWESOME tool @Ticklefish
Tickle My Android 10.2 - The Best Android Theming Tool...EVER!! by
Click to expand...
Click to collapse
Thanks bro, I'll try it !!
Yes @Ambor bro.. Just now tried @Ticklefish 's tool with Lolipop.. Its awsom... Loving it..
Everything OK but can't decompile my themes with any of this softwares. I installed framework from my z2's new 5.1.1 still can't decompile. Any solution
Toxizen said:
Everything OK but can't decompile my themes with any of this softwares. I installed framework from my z2's new 5.1.1 still can't decompile. Any solution
Click to expand...
Click to collapse
Are you getting any errors?
Sent from my D5803 using Tapatalk
Ticklefish said:
Are you getting any errors?
Sent from my D5803 using Tapatalk
Click to expand...
Click to collapse
Yes and I also get error while signing too. error 26 or something
Toxizen said:
Yes and I also get error while signing too. error 26 or something
Click to expand...
Click to collapse
If you can share those errors, it'll help solve what the problem is.
Error
Ticklefish said:
If you can share those errors, it'll help solve what the problem is.
Click to expand...
Click to collapse
Sorry for my late reply . I wasn't at home .
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Toxizen said:
Sorry for my late reply . I wasn't at home .
Click to expand...
Click to collapse
Did you install SemcGenericUxpRes.apk?
Ticklefish said:
Did you install SemcGenericUxpRes.apk?
Click to expand...
Click to collapse
Yes I did everything. But same problem with my themes. But it managed to decompile my Systemui.apk. So I am thinking it might be the problem with my apk file only so I provide it here. Test and let me know why this is happening please.
But nice tool u made.
https://drive.google.com/file/d/0B4TWfrb9-m18anlOT1UtdmlzamM/view?usp=docslist_api
Toxizen said:
Yes I did everything. But same problem with my themes. But it managed to decompile my Systemui.apk. So I am thinking it might be the problem with my apk file only so I provide it here. Test and let me know why this is happening please.
But nice tool u made.
https://drive.google.com/file/d/0B4TWfrb9-m18anlOT1UtdmlzamM/view?usp=docslist_api
Click to expand...
Click to collapse
Oh, you used TMA! I didn't spot it...
I'm having the same problem decompiling your file. Looks like there's a resource that can't be decoded. Sorry about that.
Update 10/09
OP updated for 5.1.1.
nreuge said:
OP updated for 5.1.1.
Click to expand...
Click to collapse
Well i have found TMA is better and amazing.. There is no need to replace anything in apks after recompile. Just recompile apk with same sign option in TMA. Lot of awsom options available in TMA. You should try that mate.. A big thanks to @Ticklefish ma broooooo
Rajeev said:
Well i have found TMA is better and amazing.. There is no need to replace anything in apks after recompile. Just recompile apk with same sign option in TMA. Lot of awsom options available in TMA. You should try that mate.. A big thanks to @Ticklefish ma broooooo
Click to expand...
Click to collapse
Ok my friend, good to know that. I'll try
Thanks !!

[HELP] Change some colors

I want to change Settings.apk Background color like this (i just want to make a dark theme):
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
I saw many tutorials here, but nothing found about my files.
If anyone can help me here are the files framework-res, Settings and SystemUI: https://mega.nz/#!C94CyJLK!soKx4RArbZ0mm8Kw_Y7_a9l37gbwJe2fsOGHUtWQ_x4
You just need to tell me what file to edit, i want to edit it myself to learn.
Thanks anyone who help me.
hadagalberto said:
I want to change Settings.apk Background color like this (i just want to make a dark theme):
I saw many tutorials here, but nothing found about my files.
If anyone can help me here are the files framework-res, Settings and SystemUI: https://mega.nz/#!C94CyJLK!soKx4RArbZ0mm8Kw_Y7_a9l37gbwJe2fsOGHUtWQ_x4
You just need to tell me what file to edit, i want to edit it myself to learn.
Thanks anyone who help me.
Click to expand...
Click to collapse
Which version of android ??
Edit:
If 5.0+
Then here you go just replace those lines in colors.XML and styles.XML in settings
Thanks to @nicholaschum
I'll try this, thanks
n78 shadow said:
Edit:
If 5.0+
Then here you go just replace those lines in colors.XML and styles.XML in settings
Thanks to @nicholaschum
Click to expand...
Click to collapse
I dind't findo all the strings, i edited some of them but the app isn't showing at launcher anymore. Can you edit for me?
hadagalberto said:
I dind't findo all the strings, i edited some of them but the app isn't showing at launcher anymore. Can you edit for me?
Click to expand...
Click to collapse
I hope I can but I don't have PC I made themes by apktool on android and I don't think I can decompile it or even recompile it and also I have exams these days I can't do anything ,Sorry:crying:
But if you opened the XML(s) I sent you make sure you edit the same color name and also try to edit the framework-res with those values .( in the attachment)
After editing the settings and the framework push them to the system at the same time then reboot .
Good luck
Edit : yeah I almost forget
If you didn't find all the strings add the one you didn't find that may works if you edited the framework also.
n78 shadow said:
Edit:
If 5.0+
Then here you go just replace those lines in colors.XML and styles.XML in settings
Thanks to @nicholaschum
Click to expand...
Click to collapse
n78 shadow said:
I hope I can but I don't have PC I made themes by apktool on android and I don't think I can decompile it or even recompile it and also I have exams these days I can't do anything ,Sorry:crying:
But if you opened the XML(s) I sent you make sure you edit the same color name and also try to edit the framework-res with those values .( in the attachment)
After editing the settings and the framework push them to the system at the same time then reboot .
Good luck
Edit : yeah I almost forget
If you didn't find all the strings add the one you didn't find that may works if you edited the framework also.
Click to expand...
Click to collapse
Thanks! I'll try later.
n78 shadow said:
I hope I can but I don't have PC I made themes by apktool on android and I don't think I can decompile it or even recompile it and also I have exams these days I can't do anything ,Sorry:crying:
But if you opened the XML(s) I sent you make sure you edit the same color name and also try to edit the framework-res with those values .( in the attachment)
After editing the settings and the framework push them to the system at the same time then reboot .
Good luck
Edit : yeah I almost forget
If you didn't find all the strings add the one you didn't find that may works if you edited the framework also.
Click to expand...
Click to collapse
So, i've edited all the files but something went wrong wit background:
And WhatsApp is forcing closing.
Any solution?
hadagalberto said:
So, i've edited all the files but something went wrong wit background:
And WhatsApp is forcing closing.
Any solution?
Click to expand...
Click to collapse
Mmm .
OK first of all make sure you added this line in colors.XML of settings ( if it doesn't exist just add it)
<color name="dashboard_category_background_color">#ff000000</color>
If that didn't work try to edit this
res/layouts/dashboard_category.xml
And also for the whatsapp add this zip to the framework-res
This zip contains drawable and colors and you know where to push them ( pay attention I added two XML drawables look in the deawables folders for the same name and delete them before you push those or you will face crashes)
n78 shadow said:
Mmm .
OK first of all make sure you added this line in colors.XML of settings ( if it doesn't exist just add it)
<color name="dashboard_category_background_color">#ff000000</color>
If that didn't work try to edit this
res/layouts/dashboard_category.xml
And also for the whatsapp add this zip to the framework-res
This zip contains drawable and colors and you know where to push them ( pay attention I added two XML drawables look in the deawables folders for the same name and delete them before you push those or you will face crashes)
Click to expand...
Click to collapse
Ok, my Settings.apk is working fine. But WhatsApp is still forcing closing.
I replaced the files at framework-res.
hadagalberto said:
Ok, my Settings.apk is working fine. But WhatsApp is still forcing closing.
I replaced the files at framework-res.
Click to expand...
Click to collapse
This's strange this should work.
Sorry I don't know what could I do else try to make a log and read why it crashes .
Sorry I told you every thing I know perhaps someone will continue instead of me .
n78 shadow said:
This's strange this should work.
Sorry I don't know what could I do else try to make a log and read why it crashes .
Sorry I told you every thing I know perhaps someone will continue instead of me .
Click to expand...
Click to collapse
So, is it possible to change that invisible text without modding the framework-res?
What string i need to change?
hadagalberto said:
So, is it possible to change that invisible text without modding the framework-res?
What string i need to change?
Click to expand...
Click to collapse
No you need to mod the framework-res .
And especially the styles.XML.
But did you made the edits I sent you in the zip they should fix those problems.??
n78 shadow said:
No you need to mod the framework-res .
And especially the styles.XML.
But did you made the edits I sent you in the zip they should fix those problems.??
Click to expand...
Click to collapse
I replaced that files in framework-res, but WhatsApp still FC
hadagalberto said:
I replaced that files in framework-res, but WhatsApp still FC
Click to expand...
Click to collapse
Would you please provide a log?
n78 shadow said:
Would you please provide a log?
Click to expand...
Click to collapse
How can i get this?
hadagalberto said:
How can i get this?
Click to expand...
Click to collapse
Google for
Catlog
n78 shadow said:
Google for
Catlog
Click to expand...
Click to collapse
The log is in the attachment.
hadagalberto said:
The log is in the attachment.
Click to expand...
Click to collapse
WTF (What The Fantastic Log please provided one with just the WhatsApp errors maybe screenshot the red lines
Edit : I searched the lines nothing is related to WhatsApp So what you can do ??
I'll tell you open the catlog and then open the WhatsApp after it carshs go back and pause the logs and take screenshot to the read lines.
Good luck
n78 shadow said:
WTF (What The Fantastic Log please provided one with just the WhatsApp errors maybe screenshot the red lines
Edit : I searched the lines nothing is related to WhatsApp So what you can do ??
I'll tell you open the catlog and then open the WhatsApp after it carshs go back and pause the logs and take screenshot to the read lines.
Good luck
Click to expand...
Click to collapse
Here is it:

Categories

Resources