1
mirror of https://github.com/topjohnwu/Magisk synced 2024-11-13 20:54:12 +01:00

Update build.gradle

This commit is contained in:
vvb2060 2020-08-14 00:40:24 +08:00 committed by John Wu
parent 3f053b8547
commit cf25fa8ed8
4 changed files with 12 additions and 11 deletions

View File

@ -24,11 +24,9 @@ android {
versionCode = Config["appVersionCode"]?.toInt()
buildConfigField("int", "LATEST_MAGISK", Config["versionCode"] ?: "Integer.MAX_VALUE")
javaCompileOptions {
annotationProcessorOptions {
arguments = mapOf("room.incremental" to "true")
}
}
javaCompileOptions.annotationProcessorOptions.arguments(
mapOf("room.incremental" to "true")
)
}
buildTypes {
@ -86,7 +84,6 @@ dependencies {
implementation("com.jakewharton.timber:timber:4.7.1")
implementation(kotlin("stdlib"))
implementation(kotlin("stdlib-jdk7"))
val vBAdapt = "4.0.0"
val bindingAdapter = "me.tatarka.bindingcollectionadapter2:bindingcollectionadapter"

View File

@ -18,9 +18,9 @@ val jar by tasks.getting(Jar::class) {
}
val shadowJar by tasks.getting(ShadowJar::class) {
baseName = "zipsigner"
classifier = null
version = "4.0"
archiveBaseName.set("zipsigner")
archiveClassifier.set(null as String?)
archiveVersion.set("4.0")
}
repositories {

View File

@ -11,7 +11,6 @@ buildscript {
repositories {
google()
jcenter()
maven { url = uri("http://storage.googleapis.com/r8-releases/raw") }
maven { url = uri("https://kotlin.bintray.com/kotlinx") }
}
@ -95,7 +94,7 @@ subprojects {
signingConfigs {
create("config") {
Config["keyStore"]?.also {
storeFile = File(it)
storeFile = rootProject.file(it)
storePassword = Config["keyStorePass"]
keyAlias = Config["keyAlias"]
keyPassword = Config["keyPass"]

View File

@ -20,6 +20,11 @@ android {
)
}
}
dependenciesInfo {
includeInApk = false
includeInBundle = false
}
}
dependencies {