diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 3ce7bbb88f..d0a65a7b23 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -87,6 +87,15 @@ android { java.srcDirs("$rootDir/core/src/sharedTestFunctions/java") } } + dependenciesInfo { + // Disables dependency metadata when building APKs. + // This is for the signed APKs posted on IzzyOnDroid, GitHub, and our website, + // where dependency metadata is not needed. + includeInApk = false + // Enable dependency metadata when building Android App Bundles. + // This is for the Google Play Store, where metadata is required. + includeInBundle = true + } } play {