Magisk/app/build.gradle

47 lines
1.8 KiB
Groovy
Raw Normal View History

2017-12-04 14:21:55 +08:00
apply plugin: 'com.android.application'
2016-08-06 00:58:05 +08:00
2017-12-04 14:21:55 +08:00
android {
defaultConfig {
2019-01-30 03:10:12 -05:00
applicationId 'com.topjohnwu.magisk'
2018-12-27 14:35:55 +08:00
vectorDrawables.useSupportLibrary = true
versionName rootProject.ext.configProps['appVersion']
versionCode rootProject.ext.configProps['appVersionCode'] as Integer
javaCompileOptions {
annotationProcessorOptions {
argument('butterknife.debuggable', 'false')
}
2018-08-20 12:02:38 +08:00
}
}
2017-12-04 14:21:55 +08:00
buildTypes {
release {
2018-03-28 02:23:50 +08:00
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2017-12-04 14:21:55 +08:00
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
2018-12-12 05:51:45 -05:00
implementation project(':net')
implementation project(':shared')
implementation project(':app-core')
implementation 'ru.noties:markwon:2.0.1'
implementation 'com.caverock:androidsvg-aar:1.3'
implementation 'net.sourceforge.streamsupport:android-retrostreams:1.7.0'
2019-01-04 17:55:17 +08:00
def androidXVersion = "1.0.0"
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation "androidx.preference:preference:${androidXVersion}"
implementation "androidx.recyclerview:recyclerview:${androidXVersion}"
implementation "androidx.cardview:cardview:${androidXVersion}"
implementation "com.google.android.material:material:${androidXVersion}"
implementation 'android.arch.work:work-runtime:1.0.0'
implementation 'androidx.room:room-runtime:2.0.0'
implementation 'androidx.transition:transition:1.0.1'
2019-02-28 23:42:08 -05:00
def butterKnifeVersion = '10.1.0'
implementation "com.jakewharton:butterknife-runtime:${butterKnifeVersion}"
annotationProcessor "com.jakewharton:butterknife-compiler:${butterKnifeVersion}"
2016-08-06 00:58:05 +08:00
}