Skip to content

Commit 4d23d5a

Browse files
committed
img
1 parent a8448e5 commit 4d23d5a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,11 @@ message += AndroidStringObfuscator.getString(stringId);
8383
// and secret
8484
String mySecret = "lalilulelo";
8585

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)) + "\"";
86+
message += "\n\nFor Metal Gear lovers:\n\n\"Snake, the password is " +
87+
AndroidStringObfuscator.encryptString(mySecret) +
88+
"\n\n.. or " +
89+
AndroidStringObfuscator.decryptString(AndroidStringObfuscator.encryptString(mySecret)) +
90+
"\"";
8891

8992
((TextView) findViewById(R.id.example)).setText(message);
9093
```

0 commit comments

Comments
 (0)