Magisk/app/build.gradle

83 lines
2.7 KiB
Groovy
Raw Normal View History

2017-12-04 07:21:55 +01:00
apply plugin: 'com.android.application'
2016-08-05 18:58:05 +02:00
2018-08-20 06:02:38 +02:00
def configProps = new Properties()
def configPath = project.hasProperty('configPath') ? project.configPath : rootProject.file('config.prop')
configProps.load(new FileInputStream(configPath))
2018-08-20 06:02:38 +02:00
2017-12-04 07:21:55 +01:00
android {
2018-03-25 21:52:12 +02:00
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
2017-12-04 07:21:55 +01:00
defaultConfig {
applicationId "com.topjohnwu.magisk"
minSdkVersion 21
2018-03-25 21:52:12 +02:00
targetSdkVersion rootProject.ext.compileSdkVersion
2016-08-05 18:58:05 +02:00
}
2018-08-20 06:02:38 +02:00
signingConfigs {
config {
storeFile rootProject.file('release-key.jks')
storePassword configProps['keyStorePass']
keyAlias configProps['keyAlias']
keyPassword configProps['keyPass']
}
}
2017-12-04 07:21:55 +01:00
buildTypes {
debug {
// If keystore exists, sign the APK with custom signature
if (signingConfigs.config.storeFile.exists())
signingConfig signingConfigs.config
}
2017-12-04 07:21:55 +01:00
release {
minifyEnabled true
shrinkResources true
2018-03-27 20:23:50 +02:00
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2018-08-20 06:02:38 +02:00
signingConfig signingConfigs.config
2017-12-04 07:21:55 +01:00
}
}
2018-05-27 08:34:05 +02:00
flavorDimensions "mode"
productFlavors {
full {
2018-08-20 06:02:38 +02:00
versionName configProps['appVersion']
versionCode configProps['appVersionCode'] as Integer
2018-08-08 17:09:29 +02:00
javaCompileOptions {
annotationProcessorOptions {
argument('butterknife.debuggable', 'false')
}
}
2018-05-27 08:34:05 +02:00
}
stub {
versionCode 1
versionName "stub"
}
}
2017-12-04 07:21:55 +01:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
dexOptions {
preDexLibraries true
javaMaxHeapSize "2g"
}
lintOptions {
disable 'MissingTranslation'
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
2018-05-27 08:34:05 +02:00
fullImplementation project(':utils')
2018-09-10 08:27:45 +02:00
implementation "androidx.core:core:${rootProject.ext.androidXVersion}"
fullImplementation "androidx.preference:preference:${rootProject.ext.androidXVersion}"
fullImplementation "androidx.recyclerview:recyclerview:${rootProject.ext.androidXVersion}"
fullImplementation "androidx.cardview:cardview:${rootProject.ext.androidXVersion}"
fullImplementation "com.google.android.material:material:${rootProject.ext.androidXVersion}"
fullImplementation 'com.github.topjohnwu:libsu:2.0.2'
2018-05-27 08:34:05 +02:00
fullImplementation 'com.atlassian.commonmark:commonmark:0.11.0'
fullImplementation 'org.kamranzafar:jtar:2.3'
2016-08-05 18:58:05 +02:00
}