Richard
Richard

Reputation: 101

Obfuscating strings.xml file in android code

I would like to prevent anyone decompiling my .apk file from viewing some of the strings in the strings.xml file.

Will obfuscating my code using ProGuard obfuscate or hide the strings.xml file and prevent people from seeing the original strings.

Upvotes: 6

Views: 3454

Answers (1)

JBirdVegas
JBirdVegas

Reputation: 11403

Proguard will not obfuscate strings. It basically performs minimization on the java. If you want strings to be obfuscated several options are available. Here are a couple

Stringer: https://jfxstore.com/stringer/

DexGuard: https://www.guardsquare.com/dexguard

Upvotes: 2

Related Questions