Files
Magisk/app/src/full/java/com/topjohnwu/magisk/utils/ISafetyNetHelper.java
2018-09-14 23:00:39 -04:00

19 lines
308 B
Java

package com.topjohnwu.magisk.utils;
public interface ISafetyNetHelper {
int RESPONSE_ERR = 0x01;
int CONNECTION_FAIL = 0x02;
int BASIC_PASS = 0x10;
int CTS_PASS = 0x20;
void attest();
int getVersion();
interface Callback {
void onResponse(int responseCode);
}
}