Exclude dependency info from APKs

Because this info is encrypted and only readable by Google. It serves no purpose in foss releases.

See FossifyOrg/Phone#43 for more info. Also: https://github.com/FossifyOrg/File-Manager/discussions/71
This commit is contained in:
Naveen
2024-03-18 14:19:25 +05:30
parent 007a481aa3
commit 666bfb6b5c

View File

@@ -77,6 +77,10 @@ android {
targetCompatibility = currentJavaVersionFromLibs
}
dependenciesInfo {
includeInApk = false
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = project.libs.versions.app.build.kotlinJVMTarget.get()
}