android - get all strings defined in an apk -
is there quick way strings defined in apk?
i doing this:
aapt d --values resources app.apk
i not sure if gives me strings.
if there easier way parse strings please let me know.
you can change "resources" "strings" , have it. use:
aapt d --values strings [apk_file]
this dump strings on apk. dump includes string resources looking for.
this includes strings generated system path resources (res/drawable-hdpi/icon.png example).
Comments
Post a Comment