Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,16 @@ protobuf {
}

aboutLibraries {
strictMode = StrictMode.FAIL
duplicationMode = DuplicateMode.LINK
duplicationRule = DuplicateRule.EXACT
license {
strictMode = StrictMode.FAIL
allowedLicenses.addAll("ASDKL") // Android SDK
allowedLicenses.addAll("Apache-2.0")
allowedLicenses.addAll("BSD-3-Clause")
allowedLicenses.addAll("EPL-1.0")
allowedLicenses.addAll("MIT")
}
library {
duplicationMode = DuplicateMode.LINK
duplicationRule = DuplicateRule.EXACT
}
}
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
aboutLibraries = "11.6.3"
aboutLibraries = "12.0.0"
activityCompose = "1.10.1"
agp = "8.9.1"
androidbrowserhelper = "2.5.0"
Expand Down
Loading