diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 0702fd4..d35be76 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -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() \ No newline at end of file +}.standardOutput.asText.get().trim()