apply plugin: 'com.android.application' android { compileSdkVersion 26 buildToolsVersion "26.0.2" defaultConfig { applicationId "com.topjohnwu.magisk" minSdkVersion 21 targetSdkVersion 26 versionCode 55 versionName "5.3.5" ndk { moduleName 'zipadjust' abiFilters 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a' } javaCompileOptions { annotationProcessorOptions { argument('butterknife.debuggable', 'false') } } } buildTypes { release { minifyEnabled true shrinkResources true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } dexOptions { preDexLibraries true javaMaxHeapSize "2g" } externalNativeBuild { cmake { path 'src/main/jni/CMakeLists.txt' } } lintOptions { disable 'MissingTranslation' } } repositories { jcenter() maven { url "https://jitpack.io" } maven { url "https://maven.google.com" } } dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') implementation project(':resource') implementation 'com.android.support:recyclerview-v7:26.1.0' implementation 'com.android.support:cardview-v7:26.1.0' implementation 'com.android.support:design:26.1.0' implementation 'com.android.support:support-v4:26.1.0' implementation 'com.jakewharton:butterknife:8.8.1' implementation 'com.atlassian.commonmark:commonmark:0.9.0' implementation 'org.bouncycastle:bcprov-jdk15on:1.57' implementation 'org.bouncycastle:bcpkix-jdk15on:1.57' implementation 'org.kamranzafar:jtar:2.3' implementation 'com.google.android.gms:play-services-safetynet:9.0.1' annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1' }