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

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -