Magisk/app/build.gradle

33 lines
873 B
Groovy
Raw Normal View History

2016-08-05 18:58:05 +02:00
apply plugin: 'com.android.application'
2016-08-21 15:29:42 +02:00
apply plugin: 'android-apt'
2016-08-05 18:58:05 +02:00
android {
compileSdkVersion 24
2016-08-25 12:08:07 +02:00
buildToolsVersion "24.0.2"
2016-08-05 18:58:05 +02:00
defaultConfig {
applicationId "com.topjohnwu.magisk"
minSdkVersion 21
targetSdkVersion 24
2016-08-23 01:38:03 +02:00
versionCode 4
versionName "2.0"
2016-08-05 18:58:05 +02:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
2016-08-21 15:29:42 +02:00
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:recyclerview-v7:24.2.0'
compile 'com.android.support:cardview-v7:24.2.0'
compile 'com.android.support:design:24.2.0'
2016-08-25 11:04:56 +02:00
compile 'com.github.javiersantos:AppUpdater:2.3'
2016-08-22 10:09:36 +02:00
2016-08-21 15:29:42 +02:00
compile 'com.jakewharton:butterknife:8.2.1'
apt 'com.jakewharton:butterknife-compiler:8.2.1'
2016-08-05 18:58:05 +02:00
}