We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8448e5 commit 4d23d5aCopy full SHA for 4d23d5a
README.md
@@ -83,8 +83,11 @@ message += AndroidStringObfuscator.getString(stringId);
83
// and secret
84
String mySecret = "lalilulelo";
85
86
-message += "\n\nFor Metal Gear lovers:\n\n\"Snake, the password is " + AndroidStringObfuscator.encryptString(mySecret)
87
- + "\n\n.. or " + AndroidStringObfuscator.decryptString(AndroidStringObfuscator.encryptString(mySecret)) + "\"";
+message += "\n\nFor Metal Gear lovers:\n\n\"Snake, the password is " +
+ AndroidStringObfuscator.encryptString(mySecret) +
88
+ "\n\n.. or " +
89
+ AndroidStringObfuscator.decryptString(AndroidStringObfuscator.encryptString(mySecret)) +
90
+ "\"";
91
92
((TextView) findViewById(R.id.example)).setText(message);
93
```
0 commit comments