fix(build): 多余的 APK 信息导致构建失败
This commit is contained in:
parent
8edf7b877b
commit
46106bdc0f
1 changed files with 6 additions and 1 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue