com.cprot.ead 1.0.8044 → 1.0.8127
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/android/build.gradle
CHANGED
|
@@ -329,6 +329,7 @@ class CProtEadModuleModule(reactContext: ReactApplicationContext) :
|
|
|
329
329
|
sb.append("\"isCallForwardActive\":").append(securityCheck.isCallForwardActive()).append(",")
|
|
330
330
|
sb.append("\"isUsbConnected\":").append(securityCheck.isUsbConnected()).append(",")
|
|
331
331
|
sb.append("\"isSuspiciousWifi\":").append(securityCheck.isPotentialEvilTwin()).append(",")
|
|
332
|
+
sb.append("\"isAppOnSandbox\":").append(securityCheck.isAppOnSandbox()).append(",")
|
|
332
333
|
sb.append("\"isKeyboardAppChanged\":").append(securityCheck.isKeyboardAppChanged())
|
|
333
334
|
sb.append("}")
|
|
334
335
|
|
|
@@ -532,4 +533,8 @@ class CProtEadModuleModule(reactContext: ReactApplicationContext) :
|
|
|
532
533
|
sendLogEvent("Clone app detected: $item")
|
|
533
534
|
}
|
|
534
535
|
}
|
|
536
|
+
|
|
537
|
+
override fun onScanCompleted() {
|
|
538
|
+
sendLogEvent("Scan Completed")
|
|
539
|
+
}
|
|
535
540
|
}
|