Skip to content

Instantly share code, notes, and snippets.

@jimlyas
Last active October 19, 2023 07:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jimlyas/0535194797cca33ab82201ebf9ddd532 to your computer and use it in GitHub Desktop.
Save jimlyas/0535194797cca33ab82201ebf9ddd532 to your computer and use it in GitHub Desktop.
Code for Medium Living Dangerously without Proguard
class b1 implements c {
private final String h = "someUserCredential";
public void a(String j) {
if (h==j) {
vh();
}else {
we();
}
}
}
class SomethingImportant : SomeInterface {
private val userCredential = "someUserCredential"
fun authenticateUser(token : String) {
if (userCredential==token) {
doLogin()
} else {
forceLogout()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment