Exclude dependency info from APKs

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

See https://github.com/FossifyOrg/Phone/issues/43 for more info.
This commit is contained in:
Naveen 2024-03-08 00:18:26 +05:30
parent ec880c34fe
commit a1c0440294
No known key found for this signature in database
GPG key ID: 0E155DAD31671DA3

View file

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