HELP! Unlocking the native hotspot app... - Verizon Samsung Galaxy S 4

Okay, so I have my framework-res.apk pulled out and decompiled for the S4...
> http://www.overkillhq.com/downloads/tech/framework-res.apk
I have installed apktools and successfully decompiled the apk...
Code:
java -jar apktool.jar if framework-res.apk
java -jar apktool.jar d framework-res.apk
I back up the manifest/meta-inf and later copy it back when appropriate
I remove the following lines:
Code:
<string-array translatable="false" name="config_mobile_hotspot_provision_app">
<item>"com.samsung.spg"</item>
<item>"com.samsung.spg.NewSPGActivity"</item>
</string-array>
I then go to build and get the following:
Code:
C:\apktoolsJB>java -jar apktool.jar b framework-res
W: Could not find sources
I: Checking whether resources has changed...
I: Building resources...
C:\apktoolsJB\framework-res\res\values\public.xml:5998: error: Public symbol array/config_mobile_hotspot_provision_app declared here is not defined.
C:\apktoolsJB\framework-res\res\values\public.xml:6050: error: Public entry identifier 0x1070056 entry index is larger than available symbols (index 86, total symbols 86).
C:\apktoolsJB\framework-res\res\values\public.xml:6050: error: Public symbol array/config_multiWindowHideFlashBarPackageList declared here is not defined.
Exception in thread "main" brut.androlib.AndrolibException: brut.androlib.AndrolibException: brut.common.BrutException: could not exec command: [aapt, p, --min-sdk-version, 17, --target-sdk-version, 17, -F, C:\Users\ADMINI~1\AppData\Lo
cal\Temp\APKTOOL5619132064710751576.tmp, -x, -0, arsc, -S, C:\apktoolsJB\framework-res\res, -M, C:\apktoolsJB\framework-res\AndroidManifest.xml]
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:358)
at brut.androlib.Androlib.buildResources(Androlib.java:283)
at brut.androlib.Androlib.build(Androlib.java:206)
at brut.androlib.Androlib.build(Androlib.java:176)
at brut.apktool.Main.cmdBuild(Main.java:228)
at brut.apktool.Main.main(Main.java:79)
Caused by: brut.androlib.AndrolibException: brut.common.BrutException: could not exec command: [aapt, p, --min-sdk-version, 17, --target-sdk-version, 17, -F, C:\Users\ADMINI~1\AppData\Local\Temp\APKTOOL5619132064710751576.tmp, -x, -0,
arsc, -S, C:\apktoolsJB\framework-res\res, -M, C:\apktoolsJB\framework-res\AndroidManifest.xml]
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.java:357)
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:336)
... 5 more
Caused by: brut.common.BrutException: could not exec command: [aapt, p, --min-sdk-version, 17, --target-sdk-version, 17, -F, C:\Users\ADMINI~1\AppData\Local\Temp\APKTOOL5619132064710751576.tmp, -x, -0, arsc, -S, C:\apktoolsJB\framework
-res\res, -M, C:\apktoolsJB\framework-res\AndroidManifest.xml]
at brut.util.OS.exec(OS.java:89)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.java:355)
... 6 more
What should I do to get back on track?

We need to wait for a new apktool, it's a known problem at this point. I've managed to edit some java with smali/baksmali, but not yet resources. THere is some chatter over in the ATT S4 forum about someone that got it to compile.
[FIX] systemUI, framework-res, SecPhone compile error
Jeff

If you didn't develop it it doesn't belong in the development section.
Please watch the noob video it explains not to do just this and why. You will get more support if you ask in the correct section... Q and A
Sent from my Nexus 4 using xda premium

Other thread is similar but different:
This is for those having compiling issues with systemUI.apk and framework-res.apk and the error is a layout error. Here is what I did to fix it.
For example the error in framework-res that pops up: "@layout/keyguard_transport_control" which is in keyguard_screen_unlock_portrait.xml
Just change the line to "[email protected]/keyguard_transport_control"
Click to expand...
Click to collapse
If you get a layout error, stick a + in front of your @ and it will ward off compiling demons.
Also, I'm not sure what "wifi_watchdog_on" and "subscription_mode" do in our settings.db; anybody able to enlighten me on this?
What is widgetsoid doing to enable the built-in wifi with the toggle?!

Rushing said:
If you didn't develop it it doesn't belong in the development section.
Please watch the noob video it explains not to do just this and why. You will get more support if you ask in the correct section... Q and A
Sent from my Nexus 4 using xda premium
Click to expand...
Click to collapse
Lesson learned. I apologize; I come from a forum that posts all root/advanced discussion in the development subthread, assumed this would be the same. Mods please move thread as you see fit =)
I went from scratch and found that if I followed another user's suggestion (cannot recall to give credit, 4:30 AM with a 6:30 wakeup time =/) in combination with the "+" trick, I got the APK to build with warnings about the translations:
Instead of removing all 4 lines, replace them with a single line:
Code:
<string-array translatable="false" name="config_mobile_hotspot_provision_app" />
Put @layout instead of @layout in 6 locations:
Code:
res\layout\keyguard_screen_password_landscape.xml
res\layout\keyguard_screen_password_portrait.xml
res\layout\keyguard_screen_tab_unlock.xml
res\layout\keyguard_screen_tab_unlock_land.xml
res\layout\keyguard_screen_unlock_landscape.xml
res\layout\keyguard_screen_unlock_portrait.xml
I'm scared to do it but I'm about to move this to my phone...wish me luck!

OverkillSD said:
Lesson learned. I apologize; I come from a forum that posts all root/advanced discussion in the development subthread, assumed this would be the same. Mods please move thread as you see fit =)
I went from scratch and found that if I followed another user's suggestion (cannot recall to give credit, 4:30 AM with a 6:30 wakeup time =/) in combination with the "+" trick, I got the APK to build with warnings about the translations:
Instead of removing all 4 lines, replace them with a single line:
Code:
<string-array translatable="false" name="config_mobile_hotspot_provision_app" />
Put @layout instead of @layout in 6 locations:
Code:
res\layout\keyguard_screen_password_landscape.xml
res\layout\keyguard_screen_password_portrait.xml
res\layout\keyguard_screen_tab_unlock.xml
res\layout\keyguard_screen_tab_unlock_land.xml
res\layout\keyguard_screen_unlock_landscape.xml
res\layout\keyguard_screen_unlock_portrait.xml
I'm scared to do it but I'm about to move this to my phone...wish me luck!
Click to expand...
Click to collapse
And now my phone is stuck at the verizon logo and ADB won't recognize it...can somebody link the thread I need to reference to fix this?
I'm at work right now (retail manager) and I need the phone tonight. This will be a lesson in playing with my phone when I'm tired and have things to do later ^_^
Thanks
Overkill

Can you get into download mode? If so use Odin to flash back to stock. That's what I would try. Its not bricked as you prolly know just need to wipe and flash with Odin the correct .tar for your verizon device.
Sent from my Nexus 4 using xda premium

Rushing said:
Can you get into download mode? If so use Odin to flash back to stock. That's what I would try. Its not bricked as you prolly know just need to wipe and flash with Odin the correct .tar for your verizon device.
Sent from my Nexus 4 using xda premium
Click to expand...
Click to collapse
Yeah, I was able to download the tar and flash with Odin earlier in the day...thanks though!

OverkillSD said:
Yeah, I was able to download the tar and flash with Odin earlier in the day...thanks though!
Click to expand...
Click to collapse
good deal! Odin has saved me every time I mess up my Sammy =]

So I looked at the Odin file I downloaded; is there a way to JUST flash the system.img.ext4 file from the tarball i downloaded? I want to keep goofing around with this and maybe be the one to post a working hack xD
Thanks guys,
Overkill

Alrighty...
I installed CWRM so that I can use ADB if needed to push the original file back, great success!
Whenever I use a modified framework-res.apk, it seems to freeze at the verizon logo =(

I have now tried using the APK Multi-Tool and apktools to create the modded framework-res.apk
Expected: Free native hotspot, wootsauce!
Actual: Phone stops loading at the Verizon logo and stays there. I have to re-load the original APK and the phone boots fine.

Scott released in the dev section a mod for this.
Sent from my SCH-I545 using xda app-developers app

imablackhat said:
Scott released in the dev section a mod for this.
Sent from my SCH-I545 using xda app-developers app
Click to expand...
Click to collapse
Cool. I also figured out it was because I didn't wipe the [dalvik] cache (I wiped both, not sure which one did it).
Going to see about removing the E911 icon next...

Related

[Q] Need help to recompile apk with apktool

Hi all when i tried to recompile apk with the apktool with this line: apktool b <file>, it comes out with this error.
L:\Users\YJ\Downloads\apktool\MiuiMusic\res\values \strings.xml:199: error: Apost
rophe not preceded by \ (in There's a new version available, please update)
L:\Users\YJ\Downloads\apktool\MiuiMusic\res\values \public.xml:587: error: Public
symbol string/upgrade_detail declared here is not defined.
L:\Users\YJ\Downloads\apktool\MiuiMusic\res\values \public.xml:688: error: Public
entry identifier 0x7f090129 entry index is larger than available symbols (index
297, total symbols 297).
L:\Users\YJ\Downloads\apktool\MiuiMusic\res\values \public.xml:688: error: Public
symbol string/url_debug_update declared here is not defined.
Exception in thread "main" brut.androlib.AndrolibException: brut.common.BrutExce
ption: could not exec command: [aapt, p, -F, L:\Users\YJ\AppData\Local\Temp\APKT
OOL1164060080391540263.tmp, -I, L:\Users\YJ\apktool\framework\1.apk, -S, L:\User
s\YJ\Downloads\apktool\MiuiMusic\res, -M, L:\Users\YJ\Downloads\apktool\MiuiMusi
c\AndroidManifest.xml]
at brut.androlib.res.AndrolibResources.aaptPackage(An drolibResources.jav
a:193)
at brut.androlib.Androlib.buildResourcesFull(Androlib .java:301)
at brut.androlib.Androlib.buildResources(Androlib.jav a:248)
at brut.androlib.Androlib.build(Androlib.java:171)
at brut.androlib.Androlib.build(Androlib.java:154)
at brut.apktool.Main.cmdBuild(Main.java:174)
at brut.apktool.Main.main(Main.java:59)
Caused by: brut.common.BrutException: could not exec command: [aapt, p, -F, L:\U
sers\YJ\AppData\Local\Temp\APKTOOL1164060080391540 263.tmp, -I, L:\Users\YJ\apkto
ol\framework\1.apk, -S, L:\Users\YJ\Downloads\apktool\MiuiMusic\res, -M, L:\User
s\YJ\Downloads\apktool\MiuiMusic\AndroidManifest.x ml]
at brut.util.OS.exec(OS.java:83)
at brut.androlib.res.AndrolibResources.aaptPackage(An drolibResources.jav
a:191)
... 6 more
Anybody can give me help?
Using windows 7 to compile.
I am just assuming you didn't decompile using apktool, and using it only to recompile. And use latest apktool.
Sent from my LG-P500 using XDA Premium App
4silvertooth said:
I am just assuming you didn't decompile using apktool, and using it only to recompile. And use latest apktool.
Sent from my LG-P500 using XDA Premium App
Click to expand...
Click to collapse
omg thanks for replying. But the thing is that i'm using v1.4.1 of apktool. I did decompile. After decompiling, i edited the strings.xml file, and then recompiled
kongyujian said:
omg thanks for replying. But the thing is that i'm using v1.4.1 of apktool. I did decompile. After decompiling, i edited the strings.xml file, and then recompiled
Click to expand...
Click to collapse
You have not installed the apk tool correctly. Read the wiki on apktool site.
aapt path has to be set.
Sent from my LG-P500 using XDA Premium App
Oh i resolved it! =) Thanks for helping though!
The problem is that in the .xml file, i'm supposed to put a backslash before an apostrophe. E.g. Proxy's must be written as Proxy\'s
Thanks for helping! =) Hope to have helped others. =)
Ok nice.
Sent from my LG-P500 using XDA Premium App
kongyujian said:
Oh i resolved it! =) Thanks for helping though!
The problem is that in the .xml file, i'm supposed to put a backslash before an apostrophe. E.g. Proxy's must be written as Proxy\'s
Thanks for helping! =) Hope to have helped others. =)
Click to expand...
Click to collapse
So is the miui music app gonna be done soon?
Sent using LGE Xda Secret phone
Trying to learn how to sign the apk. =( no luck so far. Haha. probably tonight or tmr night. :\ i got an output apk file already. The only thing is it cannot install.
kongyujian said:
Trying to learn how to sign the apk. =( no luck so far. Haha. probably tonight or tmr night. :\ i got an output apk file already. The only thing is it cannot install.
Click to expand...
Click to collapse
Wad? I tht miui music u have to push system/app... It will not work by jus installing... Btw can u attach so i can test it...
Sent using LGE Xda Secret phone

apktool won't build unchanged SystemUI

Can anyone help a noob figure out why?
Code:
[email protected]:~$ apktool b '/home/linux/SystemUI'
I: Checkingwhether sources has changed...
I: Checkingwhether resources has changed...
I: Building resources...
invalid resource directory name: /home/linux/SystemUI/res/values-sw720dp
invalid resource directory name: /home/linux/SystemUI/res/layout-sw600dp
invalid resource directory name: /home/linux/SystemUI/res/values-sw720dp-port invalid resource directory name: /home/linux/SystemUI/res/drawable-sw600dp-mdpi
invalid resource directory name: /home/linux/SystemUI/res/values-sw600dp
invalid resource directory name: /home/linux/SystemUI/res/values-sw600dp-port Exception in thread "main" brut.androlib.AndrolibException: brut.common.BrutException: could not exec command: [aapt, p, -F, /tmp/APKTOOL8165751601391013391.tmp, -I, /home/linux/apktool/framework/1.apk, -S'
/home/linux/SystemUI/res, -M, /home/linux/SystemUI/AndroidManifest.xml]
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.java:193) at brut.androlib.Androlib.buildResourcesFull(Androlib.java:301)
at brut.androlib.Androlib.buildResources(Androlib.java:248)
at brut.androlib.Androlib.build(Androlib.java:171)
at brut.androlib.Androlib.build(Androlib.java:154)
at brut.apktool.Main.cmdBuild(Main.java:182)
at brut.apktool.Main.main(Main.java:67)
Caused by: brut.common.BrutException: could not exec command: [aapt, p, -F, /tmp/APKTOOL8165751601391013391.tmp, -I, /home/linux/apktool/framework/1.apk, -S, /home/linux/SystemUI/res, -M, /home/linux/SystemUI/AndroidManifest.xml]
at brut.util.OS.exec(OS.java:83)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.java:191)
... 6 more
I decompiled SystemUI.apk with no problem but when I went to rebuild, I got this error. I want to make sure I know how to rebuild an unchanged directory before I start making any kind of changes and go crazy trying to figure out what the problem is.
Sent from my Amazon Kindle Fire using xda premium
What android version?
Sorry...
4.0.3
CM9
Ubuntu 10.4
Sent from my Amazon Kindle Fire using xda premium
OK, same problem, new error...
Changed <app_path>
Code:
[email protected]:~$ apktool b SystemUI
Exception in thread "main" brut.androlib.AndrolibException: brut.directory.DirectoryException: java.util.zip.ZipException: error in opening zip file
at brut.androlib.Androlib.readMetaFile(Androlib.java:142)
at brut.androlib.Androlib.build(Androlib.java:159)
at brut.androlib.Androlib.build(Androlib.java:154)
at brut.apktool.Main.cmdBuild(Main.java:182)
at brut.apktool.Main.main(Main.java:67)
Caused by: brut.directory.DirectoryException: java.util.zip.ZipException: error in opening zip file
at brut.directory.ZipRODirectory.<init>(ZipRODirectory.java:55)
at brut.directory.ZipRODirectory.<init>(ZipRODirectory.java:38)
at brut.androlib.res.util.ExtFile.getDirectory(ExtFile.java:55)
at brut.androlib.Androlib.readMetaFile(Androlib.java:138)
... 4 more
Caused by: java.util.zip.ZipException: error in opening zip file
at java.util.zip.ZipFile.open(Native Method)
at java.util.zip.ZipFile.<init>(ZipFile.java:127)
at java.util.zip.ZipFile.<init>(ZipFile.java:144)
at brut.directory.ZipRODirectory.<init>(ZipRODirectory.java:53)
... 7 more
I'm at a loss
Sent from my Amazon Kindle Fire using xda premium
soupmagnet said:
Can anyone help a noob figure out why?
Code:
[email protected]:~$ apktool b '/home/linux/SystemUI'
I: Checkingwhether sources has changed...
I: Checkingwhether resources has changed...
I: Building resources...
invalid resource directory name: /home/linux/SystemUI/res/values-sw720dp
invalid resource directory name: /home/linux/SystemUI/res/layout-sw600dp
invalid resource directory name: /home/linux/SystemUI/res/values-sw720dp-port invalid resource directory name: /home/linux/SystemUI/res/drawable-sw600dp-mdpi
invalid resource directory name: /home/linux/SystemUI/res/values-sw600dp
invalid resource directory name: /home/linux/SystemUI/res/values-sw600dp-port Exception in thread "main" brut.androlib.AndrolibException: brut.common.BrutException: could not exec command: [aapt, p, -F, /tmp/APKTOOL8165751601391013391.tmp, -I, /home/linux/apktool/framework/1.apk, -S'
/home/linux/SystemUI/res, -M, /home/linux/SystemUI/AndroidManifest.xml]
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.java:193) at brut.androlib.Androlib.buildResourcesFull(Androlib.java:301)
at brut.androlib.Androlib.buildResources(Androlib.java:248)
at brut.androlib.Androlib.build(Androlib.java:171)
at brut.androlib.Androlib.build(Androlib.java:154)
at brut.apktool.Main.cmdBuild(Main.java:182)
at brut.apktool.Main.main(Main.java:67)
Caused by: brut.common.BrutException: could not exec command: [aapt, p, -F, /tmp/APKTOOL8165751601391013391.tmp, -I, /home/linux/apktool/framework/1.apk, -S, /home/linux/SystemUI/res, -M, /home/linux/SystemUI/AndroidManifest.xml]
at brut.util.OS.exec(OS.java:83)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.java:191)
... 6 more
I decompiled SystemUI.apk with no problem but when I went to rebuild, I got this error. I want to make sure I know how to rebuild an unchanged directory before I start making any kind of changes and go crazy trying to figure out what the problem is.
Sent from my Amazon Kindle Fire using xda premium
Click to expand...
Click to collapse
Try this, hope I can help you
apktool d -s SystemUI.apk
-s, --no-src
Do not decode sources.
apktool b SystemUI
hey guys, just found this thread on a google search for this error ..
i have the same problem with CM9 Beta8 for Galaxy Ace ... pulled the framework-res.apk and SystemUI.apk via adb and installed framework-res.apk via apktool if framework-res.apk ...
i modded a lot of things in Adrenaline ROM before and everything was ok ... now, on android 4.0.4 (CM9) i get this error when ever i try to compile the apk ... tried it with a fresh project and without modding anything and it gives the same error ...
anyone have an idea ??? maybe apktool can't handle ICS-apks ???
DJ_Synergy said:
hey guys, just found this thread on a google search for this error ..
i have the same problem with CM9 Beta8 for Galaxy Ace ... pulled the framework-res.apk and SystemUI.apk via adb and installed framework-res.apk via apktool if framework-res.apk ...
i modded a lot of things in Adrenaline ROM before and everything was ok ... now, on android 4.0.4 (CM9) i get this error when ever i try to compile the apk ... tried it with a fresh project and without modding anything and it gives the same error ...
anyone have an idea ??? maybe apktool can't handle ICS-apks ???
Click to expand...
Click to collapse
This should help you
http://forum.xda-developers.com/showpost.php?p=24893563&postcount=1
pwelyn said:
Try this, hope I can help you
apktool d -s SystemUI.apk
-s, --no-src
Do not decode sources.
apktool b SystemUI
Click to expand...
Click to collapse
hello
guys i dont know but i am trying to recompile apks from 10 day tried ever fix every fix thread. i usaly get the first op problem can anyone confirm it that this method work
For ICS you need to use 2 different apktool jar files. One to decompile and another to recompile. Also you need to install system UI framework files like you do normale framework files. With apktool if systemui.apk command. And some files still can't be edited unless you edit the source file from scratch
zelendel said:
For ICS you need to use 2 different apktool jar files. One to decompile and another to recompile. Also you need to install system UI framework files like you do normale framework files. With apktool if systemui.apk command. And some files still can't be edited unless you edit the source file from scratch
Click to expand...
Click to collapse
Man I think I was looking for this in past 2 weeks I looked into all the apktool related threads and this is the simplest answer I have seen and straight forward
I will try it today thanks man
Sent from my HTC Glacier using xda premium
I'm getting the same errors. Tried everything. Got to be doing something wrong.
Sent from my HTC Sensation 4G using Tapatalk 2
Rainbowbright081 said:
I'm getting the same errors. Tried everything. Got to be doing something wrong.
Sent from my HTC Sensation 4G using Tapatalk 2
Click to expand...
Click to collapse
Yeah you didn't read my post 2 posts above this. You have to use a different apktool version to compile an ICS systemui apk
Sent from my Inspire 4G using Tapatalk 2
Sir, I did. Tried decompile with 1.4.2 compile with 1.4.3. Tried a lot of things, will try ferns way this evening. And yours again.
Edit: I hadnt installed systemui into framework, will try that and -s tag as well. Why does theming have to change in the way we deal with each rom. Lol.
Sent from my HTC Sensation 4G using Tapatalk 2
Rainbowbright081 said:
Sir, I did. Tried decompile with 1.4.2 compile with 1.4.3. Tried a lot of things, will try ferns way this evening. And yours again.
Edit: I hadnt installed systemui into framework, will try that and -s tag as well. Why does theming have to change in the way we deal with each rom. Lol.
Sent from my HTC Sensation 4G using Tapatalk 2
Click to expand...
Click to collapse
Because each rom has different framework changes. Lol and each OS update you need to reinstall the framework files as well
Sent from my Inspire 4G using Tapatalk 2
wrong version of apktool and/or aapt.
Sent from my Nokia 2100 using xda premium
thetrisatria said:
wrong version of apktool and/or aapt.
Sent from my Nokia 2100 using xda premium
Click to expand...
Click to collapse
So which is the right version then? as I have tried with apktool 1.4.1 - 1.4.3 and am on the latest aapt version and still cannot get it to work
As in am having the same problem .I tried using almost all apktools and every version of apktool but problem exist
Can this be the windows problem?
But Even on Linux I get same errors.
I also tried decompiling by one apktool and recompiling by other . Nothing worked
Even used the method ( decompiling with -s ) suggested in one of the reply in this post
I am using windows 7 64 bit and Linux 11.04 64 bit
Sent from my HTC Glacier using xda premium
1.4.3 with latest ics aapt.
tested to de/compile miui v4.
oh, btw I'm using windows7 32bit.
try to get the apktool from here:
http://forum.xda-developers.com/showthread.php?p=25063042
Sent from my Nokia 2100 using xda premium
thetrisatria said:
1.4.3 with latest ics aapt.
tested to de/compile miui v4.
oh, I'm using windows7.
Sent from my Nokia 2100 using xda premium
Click to expand...
Click to collapse
I have tried new aapt its not working for me idk why
Sent from my HTC Glacier using xda premium
gsminhas said:
I have tried new aapt its not working for me idk why
Sent from my HTC Glacier using xda premium
Click to expand...
Click to collapse
lol, its works for me. the key is to find the proper apktool. try my link above.
Sent from my Nokia 2100 using xda premium

Phone.apk compile error, don't ignore me please

Hey, please don't ignore this problem. Every project I started is stopped by this error, I can't fix many of my roms because of it. I can't continue my work so please help me. Don't think I am another one person who has no idea what he is doing, I have some experience in porting but no one wants help me.
I have done many ports for my LG Swift and now I started developement for Xperia J.
But I'm struggling with error that doesn't allow me to fix the worse bugs in my ports.
The situation:
I have succesfull decompiled, patched and compiled framework.jar for my MIUI5 port, same with LiGux, MIUI4 and many others.
But when I try to fix Phone.apk ( values/bools.xml ) then it gives me this error when smailing (no matter which rom I'm poring):
Code:
I: Checking whether sources has changed...
I: Checking whether resources has changed...
I: Building resources...
Exception in thread "main" brut.androlib.AndrolibException: brut.androlib.Androl
ibException: brut.common.BrutException: could not exec command: [aapt, p, --min-
sdk-version, 16, --target-sdk-version, 16, -F, H:\DOCUME~1\ks\USTAWI~1\Temp\APKT
OOL1846198324772815581.tmp, -0, arsc, -I, H:\Documents and Settings\ks\apktool\f
ramework\1.apk, -S, C:\apktools2\LiGux\Phone\res, -M, C:\apktools2\LiGux\Phone\A
ndroidManifest.xml]
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:358)
at brut.androlib.Androlib.buildResources(Androlib.java:283)
at brut.androlib.Androlib.build(Androlib.java:206)
at brut.androlib.Androlib.build(Androlib.java:176)
at brut.apktool.Main.cmdBuild(Main.java:228)
at brut.apktool.Main.main(Main.java:79)
Caused by: brut.androlib.AndrolibException: brut.common.BrutException: could not
exec command: [aapt, p, --min-sdk-version, 16, --target-sdk-version, 16, -F, H:
\DOCUME~1\ks\USTAWI~1\Temp\APKTOOL1846198324772815581.tmp, -0, arsc, -I, H:\Docu
ments and Settings\ks\apktool\framework\1.apk, -S, C:\apktools2\LiGux\Phone\res,
-M, C:\apktools2\LiGux\Phone\AndroidManifest.xml]
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.jav
a:357)
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:336)
... 5 more
Caused by: brut.common.BrutException: could not exec command: [aapt, p, --min-sd
k-version, 16, --target-sdk-version, 16, -F, H:\DOCUME~1\ks\USTAWI~1\Temp\APKTOO
L1846198324772815581.tmp, -0, arsc, -I, H:\Documents and Settings\ks\apktool\fra
mework\1.apk, -S, C:\apktools2\LiGux\Phone\res, -M, C:\apktools2\LiGux\Phone\And
roidManifest.xml]
at brut.util.OS.exec(OS.java:89)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.jav
a:355)
... 6 more
This error appears with MIUI, Lewa, LiGux, every rom I try to port.
YES! I remember about if framework-res.apk and if ANY_ADDIITONAL_FRAMEWORK_HERE.apk
I tried to recompile those Phone.apk's on Ubuntu too but still the same error.
I have tried many versions of apktool, I have tried various tools for recompiling, I have tried to do it manually too.
I never works, always the same error.
Please help me with this, I can't finish most of my ports beacuse of it : (
lozohcum said:
*snip*
Click to expand...
Click to collapse
What aapt did u used?
1.5.2 and older
lozohcum said:
1.5.2 and older
Click to expand...
Click to collapse
not the apktool i meant the AAPT
The same, the newest version from this site: http://code.google.com/p/android-apktool/
The phone apk has been a problem for awhile now. It can't be recompiled by any means at the moment and needs to be built from source.
Wayne Tech Nexus
So how can I build it from source? For MIUI5, LiGux ?
lozohcum said:
So how can I build it from source? For MIUI5, LiGux ?
Click to expand...
Click to collapse
For MIUI you cant. and if the other one doesnt provide source then you cant from them either.
Great,,, so there is no ability to fix not working micro in my LiGux port and Unlock Sim Code in Xperia MIUI port :/
Use miui's apktool: https://github.com/MiCode/patchrom_tools/blob/jellybean/aapt.exe and https://github.com/MiCode/patchrom_tools/blob/jellybean/apktool.jar
apktool d -t miui -f Phone.apk
apktool b -f Phone unsigned-Phone.apk
java -jar signapk.jar platform.x509.pem platform.pk8 unsigned-Phone.apk signed-Phone.apk
zipalign -v -f 4 signed-Phone.apk Phone.apk
Click to expand...
Click to collapse
Thanks, will try
Phone.apk
For Phone.apk, you will encounter a lot of errors on the recompile thanks to bad XML files in a few languages. The key here is to read the errors and correct them. Essentially there are the following problems with strings:
Strings that were broken onto multiple lines. Make them on one line.
For the above lines, remove the extra double quotes that are on the inside of the ><.
Look for apostrophes and put a \ in front of them.
Lastly there will be a bunch of lines with variable replacement codes in them like %1$d. These are all just text strings for some kind of error messages. Seems to be problems with all the stuff surrounding throttling. I simply removed the codes as I don't really care about such messages. Wish I understood the variables better but again, these were very limited messages and I don't see this as a major issue.
There is a lot to clean up, but don't let anyone tell you that this cannot be done because it most certainly can.

[help] APKTool recompile issues

I am looking for help with APKTool. I have tried using the current stable version, as well as the 2.x beta. Both with same result. I am even using the dependancies on the official google code site. My android sdk is fully updated, and both JRE and JDK are installed (both installations done about 2 weeks ago, with no prompt to update since)
Code:
C:\Development\android>apktool.bat b framework-res framework-res-new.apk
I: Using Apktool 2.0.0-Beta7 on framework-res
W: Could not find sources
I: Checking whether resources has changed...
I: Building resources...
invalid resource directory name: C:\Development\android\framework-res\res/values
-mcc454-mnc-1
Exception in thread "main" brut.androlib.AndrolibException: brut.androlib.Androl
ibException: brut.common.BrutException: could not exec command: [C:\Users\Shanno
n\AppData\Local\Temp\brut_util_Jar_147258541274646456.tmp, p, --min-sdk-version,
17, --target-sdk-version, 17, -F, C:\Users\Shannon\AppData\Local\Temp\APKTOOL12
39664133003724430.tmp, -x, -0, arsc, -S, C:\Development\android\framework-res\re
s, -M, C:\Development\android\framework-res\AndroidManifest.xml]
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:434)
at brut.androlib.Androlib.buildResources(Androlib.java:362)
at brut.androlib.Androlib.build(Androlib.java:285)
at brut.androlib.Androlib.build(Androlib.java:258)
at brut.apktool.Main.cmdBuild(Main.java:233)
at brut.apktool.Main.main(Main.java:88)
Caused by: brut.androlib.AndrolibException: brut.common.BrutException: could not
exec command: [C:\Users\Shannon\AppData\Local\Temp\brut_util_Jar_14725854127464
6456.tmp, p, --min-sdk-version, 17, --target-sdk-version, 17, -F, C:\Users\Shann
on\AppData\Local\Temp\APKTOOL1239664133003724430.tmp, -x, -0, arsc, -S, C:\Devel
opment\android\framework-res\res, -M, C:\Development\android\framework-res\Andro
idManifest.xml]
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.jav
a:481)
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:415)
... 5 more
Caused by: brut.common.BrutException: could not exec command: [C:\Users\Shannon\
AppData\Local\Temp\brut_util_Jar_147258541274646456.tmp, p, --min-sdk-version, 1
7, --target-sdk-version, 17, -F, C:\Users\Shannon\AppData\Local\Temp\APKTOOL1239
664133003724430.tmp, -x, -0, arsc, -S, C:\Development\android\framework-res\res,
-M, C:\Development\android\framework-res\AndroidManifest.xml]
at brut.util.OS.exec(OS.java:89)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.jav
a:475)
... 6 more
Skaeren said:
I am looking for help with APKTool. I have tried using the current stable version, as well as the 2.x beta. Both with same result. I am even using the dependancies on the official google code site. My android sdk is fully updated, and both JRE and JDK are installed (both installations done about 2 weeks ago, with no prompt to update since)
Click to expand...
Click to collapse
Error log says could not find resources. It means you have not installed framework-res.apk (in case of Samsung Touchwiz phones install twframework also).
Solution :-
Pull framwork-red.apk and for Samsung TW phones pull twframawork-res.apk and put it where you keep files in apktool.
If you are using APK Multitool with GUI, then first button is for installing framework.
If you are using command line apktool, type
Code:
apktool if framework-res.apk
to install framework.
Then decompile and recompile.
Press Thanks if helped
Sent from my GT-S5360 Gadget of Mass Destruction using xda-app
Using CWM........Busybox Commands........No I use my hands
hnkotnis said:
Error log says could not find resources. It means you have not installed framework-res.apk (in case of Samsung Touchwiz phones install twframework also).
Solution :-
Pull framwork-red.apk and for Samsung TW phones pull twframawork-res.apk and put it where you keep files in apktool.
If you are using APK Multitool with GUI, then first button is for installing framework.
If you are using command line apktool, type
Code:
apktool if framework-res.apk
to install framework.
Then decompile and recompile.
Press Thanks if helped
Sent from my GT-S5360 Gadget of Mass Destruction using xda-app
Using CWM........Busybox Commands........No I use my hands
Click to expand...
Click to collapse
This did not help
Code:
C:\Development\android>apktool.bat if framework-res.apk
I: Framework installed to: C:\Users\Shannon\apktool\framework\1.apk
Code:
C:\Development\android>apktool.bat d framework-res.apk
I: Using Apktool 2.0.0-Beta7 on framework-res.apk
I: Loading resource table...
I: Decoding AndroidManifest.xml with resources...
I: Regular manifest package...
I: Decoding file-resources...
I: Decoding values */* XMLs...
I: Loading resource table...
I: Copying assets and libs...
I: Copying unknown files/dir...
I: Copying original files...
Code:
C:\Development\android>apktool.bat b framework-res framework-res-new.apk
I: Using Apktool 2.0.0-Beta7 on framework-res
W: Could not find sources
I: Checking whether resources has changed...
I: Building resources...
invalid resource directory name: C:\Development\android\framework-res\res/values
-mcc454-mnc-1
Exception in thread "main" brut.androlib.AndrolibException: brut.androlib.Androl
ibException: brut.common.BrutException: could not exec command: [C:\Users\Shanno
n\AppData\Local\Temp\brut_util_Jar_3655706423395563843.tmp, p, --forced-package-
id, 1, --min-sdk-version, 17, --target-sdk-version, 17, --version-code, 17, --ve
rsion-name, 4.2.1-WW_epad-10.6.2.10-20130918, -F, C:\Users\Shannon\AppData\Local
\Temp\APKTOOL5651618845894214526.tmp, -x, -0, arsc, -S, C:\Development\android\f
ramework-res\res, -M, C:\Development\android\framework-res\AndroidManifest.xml]
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:434)
at brut.androlib.Androlib.buildResources(Androlib.java:362)
at brut.androlib.Androlib.build(Androlib.java:285)
at brut.androlib.Androlib.build(Androlib.java:258)
at brut.apktool.Main.cmdBuild(Main.java:233)
at brut.apktool.Main.main(Main.java:88)
Caused by: brut.androlib.AndrolibException: brut.common.BrutException: could not
exec command: [C:\Users\Shannon\AppData\Local\Temp\brut_util_Jar_36557064233955
63843.tmp, p, --forced-package-id, 1, --min-sdk-version, 17, --target-sdk-versio
n, 17, --version-code, 17, --version-name, 4.2.1-WW_epad-10.6.2.10-20130918, -F,
C:\Users\Shannon\AppData\Local\Temp\APKTOOL5651618845894214526.tmp, -x, -0, ars
c, -S, C:\Development\android\framework-res\res, -M, C:\Development\android\fram
ework-res\AndroidManifest.xml]
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.jav
a:481)
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:415)
... 5 more
Caused by: brut.common.BrutException: could not exec command: [C:\Users\Shannon\
AppData\Local\Temp\brut_util_Jar_3655706423395563843.tmp, p, --forced-package-id
, 1, --min-sdk-version, 17, --target-sdk-version, 17, --version-code, 17, --vers
ion-name, 4.2.1-WW_epad-10.6.2.10-20130918, -F, C:\Users\Shannon\AppData\Local\T
emp\APKTOOL5651618845894214526.tmp, -x, -0, arsc, -S, C:\Development\android\fra
mework-res\res, -M, C:\Development\android\framework-res\AndroidManifest.xml]
at brut.util.OS.exec(OS.java:89)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.jav
a:475)
... 6 more
C:\Development\android>
Skaeren said:
This did not help
Code:
C:\Development\android>apktool.bat if framework-res.apk
I: Framework installed to: C:\Users\Shannon\apktool\framework\1.apk
................................................................
Try with Android Multitool.
If it does not work give me that apk and framework. I will try to decompile it.
Wait........ Is it a 3rd party app? (I mean not a system app?)
Then it might be possible that developer is using some other resources, different than in your framework.
Click to expand...
Click to collapse
hnkotnis said:
Skaeren said:
This did not help
Code:
C:\Development\android>apktool.bat if framework-res.apk
I: Framework installed to: C:\Users\Shannon\apktool\framework\1.apk
................................................................
Try with Android Multitool.
If it does not work give me that apk and framework. I will try to decompile it.
Wait........ Is it a 3rd party app? (I mean not a system app?)
Then it might be possible that developer is using some other resources, different than in your framework.
Click to expand...
Click to collapse
Thanks, but it didn't help. I will keep the tool, ask my girlfriend to look over the log when there is time, but so far, still an error. I have not been able to recompile.
It is a system app. I modified one file to enable calls on my TF300TG. I have included 7zip files of the apk, and of the values folder. The values folder goes inside the res folder of the decompiled apk, before recompiling. If you could recompile for me, I will give you all the cookies!
Click to expand...
Click to collapse
Skaeren said:
hnkotnis said:
Thanks, but it didn't help. I will keep the tool, ask my girlfriend to look over the log when there is time, but so far, still an error. I have not been able to recompile.
It is a system app. I modified one file to enable calls on my TF300TG. I have included 7zip files of the apk, and of the values folder. The values folder goes inside the res folder of the decompiled apk, before recompiling. If you could recompile for me, I will give you all the cookies!
Click to expand...
Click to collapse
You did not tell me you had JellyBean. I found it when I took a look at framework-res.apk manifest.
There is some problem with decompiling and recompiling JB Framework. (No problem for other apks)
So I did a bit searching and I found this
monstaX said:
Grab an ICS framework-res apk. Replace manifest resources.arsc and res from the ICS apk with the one from jb apk. Then dexompile with apktool142.jar and then edit. Then recompile with apktoll144.jar. then open the apk that recompiled and take out manifest resources.arsc and res and place back in jb framework sorry if its to confusing. But just a quick write up
Sent from my SPH-L710 using XDA App
Click to expand...
Click to collapse
Added at 28/01/2014 04:00 PM IST
I also found this thread
This contains JB Decompiling tool and there are some guides of framework-res modifications.
Click to expand...
Click to collapse
hnkotnis said:
Skaeren said:
I will try to do it.
Click to expand...
Click to collapse
thanks
Click to expand...
Click to collapse
@Skaeren
Please read my updated post above.
hnkotnis said:
@Skaeren
Please read my updated post above.
Click to expand...
Click to collapse
I thank you for your assistance. I will take a look at the link when I get home. I know it might be asking a lot, but would it be possible for you to make the required resources.arsc for me? Basically, I only need two variabls in bools.xml changed. I have attached my bools.xml file.
If you are able to, I greatly appreciate the help. Hell, I greatly appreciate the help anyway. This stuff is a little beyond my current knowledge pool though.
is this proble solved? you want recompiled system file like systemui.apk?
try to delete folder "values-mcc9989-mnc999" in your decopile folder /res/here
press thanks button if i helped you
Problem while decompiling SystemUI.apk
I can decompile framework-res.apk but i cant able to decompile SystemUI.apk 4.2.2.
Any Solution???
thanks in advance

HELP NEEDED! Compiling Framework & SystemUI

Hello all. Need some of your expert advice ASAP!
I'm very familiar with using APKTool and Compiling/Decompiling Apps. I've run into a problem with the framework-res and SystemUI apps.
Current ROM/App info:
Samsung Galaxy Tab 3 8.0
Android 4.2.2 (Samsung Touchwiz)
Framework Installed in APKTool: framework-res.apk, twframework-res.apk and SystemUI.apk
APKTool Version: 2.0 (I've tried almost every version of APKTool and AAPT)
Java Version: 1.7 (as required by APKTool 2.0)
OS: Windows and Linux (same results on each OS)
The framework and SystemUI apps decompile fine. No errors and all the XML/Smali files are perfect. The problem is that I can not recompile either of them. Each time I attempt, I get the same error regarding the Android Manifest file....
Code:
brut.androlib.AndrolibException: brut.androlib.AndrolibException: brut.common.BrutException: c
\brut_util_Jar_8264547236691306049.tmp, p, --forced-package-id, 127, --min-sdk-version, 17, --
me, 4.2.2-T310UEUAMH2, -F, C:\Users\Adam\AppData\Local\Temp\APKTOOL3953045592385201216.tmp, -0
:\Users\Adam\Desktop\Project_Tab3_4.15\OriginalFiles\SystemUI\res, -M, C:\Users\Adam\Desktop\P
xml]
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:439)
at brut.androlib.Androlib.buildResources(Androlib.java:367)
at brut.androlib.Androlib.build(Androlib.java:290)
at brut.androlib.Androlib.build(Androlib.java:262)
at brut.apktool.Main.cmdBuild(Main.java:236)
at brut.apktool.Main.main(Main.java:88)
Caused by: brut.androlib.AndrolibException: brut.common.BrutException: could not exec command:
236691306049.tmp, p, --forced-package-id, 127, --min-sdk-version, 17, --target-sdk-version, 17
-F, C:\Users\Adam\AppData\Local\Temp\APKTOOL3953045592385201216.tmp, -0, arsc, -I, C:\Users\A
roject_Tab3_4.15\OriginalFiles\SystemUI\res, -M, C:\Users\Adam\Desktop\Project_Tab3_4.15\Origi
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.java:473)
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:420)
... 5 more
Caused by: brut.common.BrutException: could not exec command: [C:\Users\Adam\AppData\Local\Tem
kage-id, 127, --min-sdk-version, 17, --target-sdk-version, 17, --version-code, 17, --version-n
Temp\APKTOOL3953045592385201216.tmp, -0, arsc, -I, C:\Users\Adam\apktool\framework\1.apk, -S,
stemUI\res, -M, C:\Users\Adam\Desktop\Project_Tab3_4.15\OriginalFiles\SystemUI\AndroidManifest
at brut.util.OS.exec(OS.java:89)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.java:467)
... 6 more
I have spent the past 6 hours searching and reading for possible solutions and nothing has worked. I know some dev's have been able to sucessfully compile these apps (even though MANY people have had this exact same problem).
Can anyone provide any assistance on what the fix/workaround is to get these apps compiled? FYI - I have even tried compiling the stock apps without any mods and I get the same errors.
Let me know if you need further clarification on my situation. And please, only respond if you have a known solution. I have speculated all day and chased every possible hunch.
Thanks in advance!!!!
arshull said:
Hello all. Need some of your expert advice ASAP!
I'm very familiar with using APKTool and Compiling/Decompiling Apps. I've run into a problem with the framework-res and SystemUI apps.
Current ROM/App info:
Samsung Galaxy Tab 3 8.0
Android 4.2.2 (Samsung Touchwiz)
Framework Installed in APKTool: framework-res.apk, twframework-res.apk and SystemUI.apk
APKTool Version: 2.0 (I've tried almost every version of APKTool and AAPT)
Java Version: 1.7 (as required by APKTool 2.0)
OS: Windows and Linux (same results on each OS)
The framework and SystemUI apps decompile fine. No errors and all the XML/Smali files are perfect. The problem is that I can not recompile either of them. Each time I attempt, I get the same error regarding the Android Manifest file....
Code:
brut.androlib.AndrolibException: brut.androlib.AndrolibException: brut.common.BrutException: c
\brut_util_Jar_8264547236691306049.tmp, p, --forced-package-id, 127, --min-sdk-version, 17, --
me, 4.2.2-T310UEUAMH2, -F, C:\Users\Adam\AppData\Local\Temp\APKTOOL3953045592385201216.tmp, -0
:\Users\Adam\Desktop\Project_Tab3_4.15\OriginalFiles\SystemUI\res, -M, C:\Users\Adam\Desktop\P
xml]
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:439)
at brut.androlib.Androlib.buildResources(Androlib.java:367)
at brut.androlib.Androlib.build(Androlib.java:290)
at brut.androlib.Androlib.build(Androlib.java:262)
at brut.apktool.Main.cmdBuild(Main.java:236)
at brut.apktool.Main.main(Main.java:88)
Caused by: brut.androlib.AndrolibException: brut.common.BrutException: could not exec command:
236691306049.tmp, p, --forced-package-id, 127, --min-sdk-version, 17, --target-sdk-version, 17
-F, C:\Users\Adam\AppData\Local\Temp\APKTOOL3953045592385201216.tmp, -0, arsc, -I, C:\Users\A
roject_Tab3_4.15\OriginalFiles\SystemUI\res, -M, C:\Users\Adam\Desktop\Project_Tab3_4.15\Origi
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.java:473)
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:420)
... 5 more
Caused by: brut.common.BrutException: could not exec command: [C:\Users\Adam\AppData\Local\Tem
kage-id, 127, --min-sdk-version, 17, --target-sdk-version, 17, --version-code, 17, --version-n
Temp\APKTOOL3953045592385201216.tmp, -0, arsc, -I, C:\Users\Adam\apktool\framework\1.apk, -S,
stemUI\res, -M, C:\Users\Adam\Desktop\Project_Tab3_4.15\OriginalFiles\SystemUI\AndroidManifest
at brut.util.OS.exec(OS.java:89)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.java:467)
... 6 more
I have spent the past 6 hours searching and reading for possible solutions and nothing has worked. I know some dev's have been able to sucessfully compile these apps (even though MANY people have had this exact same problem).
Can anyone provide any assistance on what the fix/workaround is to get these apps compiled? FYI - I have even tried compiling the stock apps without any mods and I get the same errors.
Let me know if you need further clarification on my situation. And please, only respond if you have a known solution. I have speculated all day and chased every possible hunch.
Thanks in advance!!!!
Click to expand...
Click to collapse
are these apps are deodexed?
install deodexed framework and systemui apps
Vaibhav Chauhan said:
are these apps are deodexed?
install deodexed framework and systemui apps
Click to expand...
Click to collapse
Yes, all apps/ROM is DeOdexed
arshull said:
Yes, all apps/ROM is DeOdexed
Click to expand...
Click to collapse
make sure you have compiled same rom's apps
Do you have the android SDK updated?
Bat cave One
can u specify what modifications u made in the apk...
zelendel said:
Do you have the android SDK updated?
Bat cave One
Click to expand...
Click to collapse
Yes, SDK is updated to the latest.
Sent from my HTC One using XDA Free mobile app
theprakhar said:
can u specify what modifications u made in the apk...
Click to expand...
Click to collapse
Very basic mods.... Color changes mostly. But I can not even recompile unmodified apps after I decompile them.
Sent from my HTC One using XDA Free mobile app
arshull said:
Very basic mods.... Color changes mostly. But I can not even recompile unmodified apps after I decompile them.
Sent from my HTC One using XDA Free mobile app
Click to expand...
Click to collapse
you can try other tools for compile
Vaibhav Chauhan said:
you can try other tools for compile
Click to expand...
Click to collapse
I have tried everything possible. I'm going to set up a separate dev environment with some different tools/drivers and see if that has any effect.
Sent from my HTC One using XDA Free mobile app
arshull said:
I have tried everything possible. I'm going to set up a separate dev environment with some different tools/drivers and see if that has any effect.
Sent from my HTC One using XDA Free mobile app
Click to expand...
Click to collapse
ok try it
Same here
Vaibhav Chauhan said:
ok try it
Click to expand...
Click to collapse
I'm having the exact same problem for modding a keyboard. I have my JAVA PATH set to correct Java JDK location; correct paths set to android SDK files, which were placed in C:\windows (per advise for this problem). Also tried different APKTools. Nothing works

Categories

Resources