Files
Magisk/app/src/full/java/com/topjohnwu/magisk/utils/ISafetyNetHelper.java
2018-08-22 11:50:21 +08:00

24 lines
383 B
Java

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