diff options
| -rw-r--r-- | android/gradle/verification-metadata.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/android/gradle/verification-metadata.xml b/android/gradle/verification-metadata.xml index cb54d2a206..23e62780a2 100644 --- a/android/gradle/verification-metadata.xml +++ b/android/gradle/verification-metadata.xml @@ -14,6 +14,13 @@ For more information see: https://github.com/gradle/gradle/issues/19228 - Comments after the verification-metadata opening tag will automatically be removed by gradle when generating components. + see: https://github.com/gradle/gradle/issues/14885 + + WORKAROUNDS: + - Ignore gradle wrapper source being downloaded when running "Sync Project with Gradle Files" + https://youtrack.jetbrains.com/issue/IDEA-258328 + Line added: + <trust file="gradle-[0-9.]+-src.zip" regex="true"/> --> <verification-metadata xmlns="https://schema.gradle.org/dependency-verification" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://schema.gradle.org/dependency-verification https://schema.gradle.org/dependency-verification/dependency-verification-1.3.xsd"> <configuration> @@ -25,6 +32,7 @@ <trust file=".*-javadoc[.]jar" regex="true"/> <trust file=".*-sources[.]jar" regex="true"/> <trust file=".*[.]pom" regex="true"/> + <trust file="gradle-[0-9.]+-src.zip" regex="true"/> </trusted-artifacts> <trusted-keys> <trusted-key id="04543577D6A9CC626239C50C7ECBD740FF06AEB5"> |
