Skip to content

Commit 6618a8f

Browse files
committed
Disable dependencies info in APK and bundle
Update app/build.gradle.kts to configure dependenciesInfo with includeInApk = false and includeInBundle = false so dependency metadata is not packaged into either the APK or the app bundle. Previously only includeInApk was set.
1 parent 8fb9fee commit 6618a8f

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

app/build.gradle.kts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,10 @@ android {
143143
"**/*.proto"
144144
)
145145

146-
dependenciesInfo.includeInApk = false
146+
dependenciesInfo {
147+
includeInApk = false
148+
includeInBundle = false
149+
}
147150

148151
applicationVariants.configureEach {
149152
outputs.configureEach {

0 commit comments

Comments
 (0)