Magisk/app/src/main/java/com/topjohnwu/magisk/ui/safetynet/SafetyNetHelper.kt

15 lines
219 B
Kotlin
Raw Normal View History

package com.topjohnwu.magisk.ui.safetynet
2019-08-08 09:59:23 +02:00
import org.json.JSONObject
2019-08-08 09:59:23 +02:00
interface SafetyNetHelper {
val version: Int
fun attest()
interface Callback {
fun onResponse(response: JSONObject?)
2019-08-08 09:59:23 +02:00
}
}