Okay, this goes out to the devs in the community. Trying to use apktool for the first time. I believe I have it installed correctly. I mount the framework-res.apk to the system with
which seems to work, then I decompile with
That gives me my decompiled apk to modify. Then I go in to make my changes by adding my pngs and editing the xmls. I BELIEVE I have it right then go to compile with
And I get all these errors:
Any advice on where I am going wrong?
code
apktool if framework-res.apk
which seems to work, then I decompile with
code
apktool d framework-res.apk
That gives me my decompiled apk to modify. Then I go in to make my changes by adding my pngs and editing the xmls. I BELIEVE I have it right then go to compile with
code
apktool b framework-res.apk
And I get all these errors:
code
C:\Users\Christian\Desktop\ginger1.3NEW>apktool b framework-res.apk
Exception in thread "main" brut.androlib.AndrolibException: brut.directory.PathN
otExist: apktool.yml
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:174)
at brut.apktool.Main.main(Main.java:59)
Caused by: brut.directory.PathNotExist: apktool.yml
at brut.directory.AbstractDirectory.getFileInput(AbstractDirectory.java:
103)
at brut.androlib.Androlib.readMetaFile(Androlib.java:138)
... 4 more
C:\Users\Christian\Desktop\ginger1.3NEW>
Any advice on where I am going wrong?