Skip to content

Commit

Permalink
Merge branch 'bump-agp-plugin-droid-1112'
Browse files Browse the repository at this point in the history
  • Loading branch information
Rawa committed Sep 24, 2024
2 parents a6444fa + e956421 commit 7031dc2
Show file tree
Hide file tree
Showing 5 changed files with 260 additions and 321 deletions.
6 changes: 5 additions & 1 deletion android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,11 @@ allprojects {

configure<org.owasp.dependencycheck.gradle.extension.DependencyCheckExtension> {
failBuildOnCVSS = 0F // All severity levels
suppressionFile = "${rootProject.projectDir}/config/dependency-check-suppression.xml"
suppressionFiles =
listOf(
"${rootProject.projectDir}/config/dependency-check-suppression.xml",
"${rootProject.projectDir}/config/dependency-check-suppression-agp-fixes.xml",
)
}

configure<com.ncorti.ktfmt.gradle.KtfmtExtension> {
Expand Down
40 changes: 40 additions & 0 deletions android/config/dependency-check-suppression-agp-fixes.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd">
<suppress until="2024-12-01Z">
<notes><![CDATA[
This and all other supressions in this file are for dependencies only used for tests.
These should be excluded by the plugin but this behaviour is broken.
Added here until we can fix the plugin behaviour.
]]></notes>
<packageUrl regex="true">^pkg:maven/io\.netty/.*@.*$</packageUrl>
<cve>CVE-2022-41881</cve>
<cve>CVE-2023-44487</cve>
<cve>CVE-2023-34462</cve>
<cve>CVE-2022-24823</cve>
<cve>CVE-2024-29025</cve>
<cve>CVE-2022-41915</cve>
</suppress>
<suppress until="2024-12-01Z">
<notes><![CDATA[
This and all other supressions in this file are for dependencies only used for tests.
These should be excluded by the plugin but this behaviour is broken.
Added here until we can fix the plugin behaviour.
]]></notes>
<packageUrl regex="true">^pkg:maven/com\.google\.protobuf/.*@.*$</packageUrl>
<cve>CVE-2024-7254</cve>
<cve>CVE-2022-3171</cve>
<cve>CVE-2022-3510</cve>
<cve>CVE-2021-22569</cve>
</suppress>
<suppress until="2024-12-01Z">
<notes><![CDATA[
This and all other supressions in this file are for dependencies only used for tests.
These should be excluded by the plugin but this behaviour is broken.
Added here until we can fix the plugin behaviour.
]]></notes>
<packageUrl regex="true">^pkg:maven/com.google.guava/guava@.*$</packageUrl>
<cve>CVE-2023-2976</cve>
<cve>CVE-2020-8908</cve>
</suppress>
</suppressions>

1 change: 0 additions & 1 deletion android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ android.nonTransitiveRClass=false
android.useAndroidX=true
kotlin.code.style=official
org.gradle.jvmargs=-Xmx8192M -Dkotlin.daemon.jvm.options\="-Xmx8192M"
android.experimental.lint.version = 8.4.0
4 changes: 2 additions & 2 deletions android/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# The android-gradle-aapt plugin version must be in sync with the android plugin version.
# Required for Gradle metadata verification to work properly, see:
# https://github.com/gradle/gradle/issues/19228
android-gradle-plugin = "8.3.0"
android-gradle-aapt = "10880808"
android-gradle-plugin = "8.6.1"
android-gradle-aapt = "11315950"
android-billingclient = "7.0.0"
android-volley = "1.2.1"

Expand Down
Loading

0 comments on commit 7031dc2

Please sign in to comment.