Chore: update dependencies & remove appcenter tracker

This commit is contained in:
Kr328
2022-07-01 12:07:23 +08:00
parent c18d78db85
commit c3bab32b83
11 changed files with 18 additions and 92 deletions

View File

@@ -65,7 +65,9 @@ subprojects {
if (isApp) {
packagingOptions {
excludes.add("DebugProbesKt.bin")
resources {
excludes.add("DebugProbesKt.bin")
}
}
}
@@ -88,19 +90,6 @@ subprojects {
versionNameSuffix = ".premium"
buildConfigField("boolean", "PREMIUM", "Boolean.parseBoolean(\"true\")")
val tracker = rootProject.file("tracker.properties")
if (tracker.exists()) {
val prop = Properties().apply {
tracker.inputStream().use(this::load)
}
buildConfigField(
"String",
"APP_CENTER_KEY",
"\"${prop.getProperty("appcenter.key")!!}\""
)
}
}
}