I have a String Array in my MainActivity Class.
I want to hide this string array from my java file. I have used proguard to secure my app but when i export my app and decompile it,it's become very easy to get my string value.Proguard is just changing my value name not hiding the string.see the screenshot below.
Now i want to hide my url string from my java file. I don't know how can i do that.so please help me to hide this string.
Proguard.cfg
-keep class com.google.android.gms.** { *; }
-dontwarn com.google.android.gms.**
Project-properties
target=android-21
android.library.reference.1=..\\google-play-services_lib
proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard.cfg
I am using Eclipse.Thanks in advance.