Is there a quick way to get all the strings defined in an apk?
I am doing something like this:
aapt d --values resources app.apk
I am not sure if it gives me all the strings.
If there is any easier way to parse the strings please let me know.
You can change "resources" for "strings" and you will have it. Use:
aapt d --values strings [APK_FILE]
This will dump all the strings on the apk. The dump includes the string resources that is what you are looking for.
This also includes strings generated by the system like the path to resources (res/drawable-hdpi/icon.png by example).
This will decompress the whole APK including turning the files back into the directory hierarchy you expect from an Android project.
http://code.google.com/p/android-apktool/ (deprecated)
http://ibotpeaches.github.io/Apktool/install/
To use type
apktool d YourApp.apk
Results will go into a folder named YourApp
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With