Magisk/app-core/src/main/java/com/topjohnwu/magisk/utils/ISafetyNetHelper.java

19 lines
308 B
Java
Raw Normal View History

2019-01-30 09:10:12 +01:00
package com.topjohnwu.magisk.utils;
2018-06-09 18:43:01 +02:00
public interface ISafetyNetHelper {
2018-08-22 05:50:21 +02:00
int RESPONSE_ERR = 0x01;
int CONNECTION_FAIL = 0x02;
2018-06-09 18:43:01 +02:00
int BASIC_PASS = 0x10;
int CTS_PASS = 0x20;
void attest();
2018-06-09 18:43:01 +02:00
int getVersion();
interface Callback {
void onResponse(int responseCode);
}
}