fix(build): 多余的 APK 信息导致构建失败

This commit is contained in:
Super12138 2025-02-14 22:06:55 +08:00 committed by GitHub
parent 8edf7b877b
commit 46106bdc0f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -70,6 +70,11 @@ android {
buildFeatures {
compose = true
}
// F-Droid 构建无法检测依赖信息块,所以将其忽略
dependenciesInfo {
includeInApk = false
includeInBundle = false
}
}
dependencies {
@ -126,4 +131,4 @@ fun String.exec(): String = exec(this)
fun Project.exec(command: String): String = providers.exec {
commandLine(command.split(" "))
}.standardOutput.asText.get().trim()
}.standardOutput.asText.get().trim()