Bump version

This commit is contained in:
topjohnwu 2017-10-14 04:18:14 +08:00
parent c10076f7ed
commit aa0b9e2db2
2 changed files with 4 additions and 5 deletions

View File

@ -8,8 +8,8 @@ android {
applicationId "com.topjohnwu.magisk"
minSdkVersion 21
targetSdkVersion 26
versionCode 55
versionName "5.3.5"
versionCode 56
versionName "5.4.0"
ndk {
moduleName 'zipadjust'
abiFilters 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a'

View File

@ -17,10 +17,9 @@ import dalvik.system.DexClassLoader;
public class CheckSafetyNet extends ParallelTask<Void, Void, Exception> {
public static final int SNET_VER = 1;
public static final int SNET_VER = 2;
// Test URL, will switch to proper URL
private static final String SNET_URL = "https://www.dropbox.com/s/i5vvbl5eenmag5q/snet-release-unsigned.apk?dl=1";
private static final String SNET_URL = "https://github.com/topjohnwu/MagiskManager/releases/download/v5.4.0/snet.apk";
private static final String PKG = "com.topjohnwu.snet";
private File dexPath;