@@ -63,7 +63,7 @@ From resources:
6363``` java
6464String decrypted = AndroidStringObfuscator . getString(R . string. hello);
6565```
66- Or from some encrypted variable :
66+ Or from encrypted variables :
6767``` java
6868String decrypted = AndroidStringObfuscator . decryptString(encrypted_var);
6969```
@@ -80,10 +80,10 @@ String message = getString(stringId);
8080message += " is " ;
8181message += AndroidStringObfuscator . getString(stringId);
8282
83- // and some secret
83+ // and secret
8484String mySecret = " lalilulelo" ;
8585
86- message += " \n\n For Metal Gear lovers:\n\n\" Snake, the password is " + AndroidStringObfuscator . encryptString(message )
86+ message += " \n\n For Metal Gear lovers:\n\n\" Snake, the password is " + AndroidStringObfuscator . encryptString(mySecret )
8787 + " \n\n .. or " + AndroidStringObfuscator . decryptString(AndroidStringObfuscator . encryptString(mySecret)) + " \" " ;
8888
8989((TextView ) findViewById(R . id. example)). setText(message);
@@ -97,7 +97,7 @@ Gradle Console Output Example
9797:sample:obfuscator-script - -----------------------------------------------------------------------------
9898:sample:obfuscator-script - debug variant
9999:sample:obfuscator-script - SHA1 fingerprint: E1:28:0C:3E:65:91:2E:21:E9:98:2B:58:80:9A:25:3A:F6:88:7D:FF
100- :sample:obfuscator-script - [StringObfuscato.. ] - [7CFBFBEE31ABA92 ..]
100+ :sample:obfuscator-script - [hello world! ] - [D1862D9B434D08E ..]
101101:sample:obfuscator-script - -----------------------------------------------------------------------------
102102:sample:obfuscator-script - v 0.5
103103:sample:processDebugManifest UP-TO-DATE
0 commit comments