Created
March 28, 2022 15:56
-
-
Save mukeshsolanki/cef6f41c88866fa51c37c451ed012bfd to your computer and use it in GitHub Desktop.
Used for the https://medium.com/@TheMukeshSolanki/how-to-prevent-hackers-from-reverse-engineering-your-android-apps-2981661ab1c2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (this.validateSignature("INSERT YOUR RELEASE SIGNATURE HERE") == Result.VALID) { | |
// Signature is valid continue using the app | |
} else { | |
// Signature is invalid likely a modded version of the app | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the library. However excude my ignorance, but how do I use this is an Android Java app ?