@@ -29,58 +29,58 @@ class TalsecApplication : Application(), ThreatListener.ThreatDetected {
2929
3030 override fun onRootDetected () {
3131 // Set your reaction
32- TODO ( " Not yet implemented " )
32+ println ( " onRootDetected " )
3333 }
3434
3535 override fun onDebuggerDetected () {
3636 // Set your reaction
3737 // Triggered only in release build
38- TODO ( " Not yet implemented " )
38+ println ( " onDebuggerDetected " )
3939 }
4040
4141 override fun onEmulatorDetected () {
4242 // Set your reaction
4343 // Triggered only in release build
44- TODO ( " Not yet implemented " )
44+ println ( " onEmulatorDetected " )
4545 }
4646
4747 override fun onTamperDetected () {
4848 // Set your reaction
4949 // Triggered only in release build
50- TODO ( " Not yet implemented " )
50+ println ( " onTamperDetected " )
5151 }
5252
5353 override fun onUntrustedInstallationSourceDetected () {
5454 // Set your reaction
5555 // Triggered only in release build
56- TODO ( " Not yet implemented " )
56+ println ( " onUntrustedInstallationSourceDetected " )
5757 }
5858
5959 override fun onHookDetected () {
6060 // Set your reaction
61- TODO ( " Not yet implemented " )
61+ println ( " onHookDetected " )
6262 }
6363
6464 override fun onDeviceBindingDetected () {
6565 // Set your reaction
66- TODO ( " Not yet implemented " )
66+ println ( " onDeviceBindingDetected " )
6767 }
6868
6969 override fun onObfuscationIssuesDetected () {
7070 // Set your reaction
71- TODO ( " Not yet implemented " )
71+ println ( " onObfuscationIssuesDetected " )
7272 }
7373
7474 // This is optional. Use only if you are interested in device state information like device lock and HW backed keystore state
7575 private val deviceStateListener = object : ThreatListener .DeviceState {
7676 override fun onUnlockedDeviceDetected () {
7777 // Set your reaction
78- TODO ( " Not yet implemented " )
78+ println ( " onUnlockedDeviceDetected " )
7979 }
8080
8181 override fun onHardwareBackedKeystoreNotAvailableDetected () {
8282 // Set your reaction
83- TODO ( " Not yet implemented " )
83+ println ( " onHardwareBackedKeystoreNotAvailableDetected " )
8484 }
8585 }
8686
0 commit comments