App Tampering detection
// Android tampering
override fun onTamperDetected() {
TODO("Not yet implemented")
}
// iOS signature
case signature
// Flutter tampering and signature detection
onAppIntegrity: () => print("App integrity")
// Cordova tampering and signature detection
appIntegrity: () => {
// Place your reaction here
}
// React Native tampering and signature detection
appIntegrity: () => {
// Place your reaction here
}
// Capacitor tampering and signature detection
appIntegrity: () => {
// Place your reaction here
}Last updated

