sky201503 / android-apktool-1

Automatically exported from code.google.com/p/android-apktool
0 stars 0 forks source link

apktool d *.apk #292

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?

What version of the product are you using? On what operating system?

Please provide any additional information below.

Original issue reported on code.google.com by shunwu.h...@gmail.com on 19 Jan 2012 at 9:57

GoogleCodeExporter commented 9 years ago
I: Baksmaling...
I: Loading resource table...
W: Skipping "android" package group
I: Loaded.
I: Loading resource table from file: C:\Users\huang\apktool\framework\1.apk
W: Could not decode attr value, using undecoded value instead: ns=android, name=
name, value=0x0000001b
Exception in thread "main" java.lang.NullPointerException
        at java.io.Writer.write(Unknown Source)
        at brut.androlib.res.util.ExtMXSerializer.writeAttributeValue(ExtMXSeria
lizer.java:38)
        at org.xmlpull.mxp1_serializer.MXSerializer.attribute(MXSerializer.java:

Original comment by shunwu.h...@gmail.com on 19 Jan 2012 at 9:58

GoogleCodeExporter commented 9 years ago
You can't use "*.apk"!

You have to decompile the apk's one-by-one...

Original comment by KJ.Logem...@gmail.com on 19 Jan 2012 at 2:49

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
This isn't intended functionality.

Use built in bash.

for (file in *.apk); do
   apktool d $file;
done

Original comment by connor.tumbleson on 17 Nov 2012 at 12:20