Merge branch 'gradle-dependency-verification' into 'master'

Gradle dependency verification

See merge request fdroid/fdroidclient!913
This commit is contained in:
Hans-Christoph Steiner 2020-07-21 10:02:00 +00:00
commit 33683cf870
6 changed files with 2590 additions and 2 deletions

1
.gitattributes vendored Normal file
View File

@ -0,0 +1 @@
*.gpg binary

View File

@ -53,7 +53,7 @@ errorprone:
stage: test stage: test
script: script:
- cat config/errorprone.gradle >> app/build.gradle - cat config/errorprone.gradle >> app/build.gradle
- ./gradlew assembleDebug - ./gradlew -Dorg.gradle.dependency.verification=lenient assembleDebug
# once these prove stable, the task should be switched to # once these prove stable, the task should be switched to
# connectedCheck to test all the build flavors # connectedCheck to test all the build flavors

View File

@ -1,3 +1,11 @@
### 1.10-alpha0 (2020-07-20)
* updates to core libraries (Jackson, androidx, gradle, etc)
* use Gradle's new dependency verification
* polish whitelabeling support
### 1.9 (2020-06-25) ### 1.9 (2020-06-25)
* Removed "Android App Link" support since it cannot work with * Removed "Android App Link" support since it cannot work with

View File

@ -5,7 +5,7 @@ buildscript {
jcenter() // download from jCenter as last resort https://blog.autsoft.hu/a-confusing-dependency jcenter() // download from jCenter as last resort https://blog.autsoft.hu/a-confusing-dependency
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:3.6.0' classpath 'com.android.tools.build:gradle:3.6.3'
} }
} }
allprojects { allprojects {

Binary file not shown.

File diff suppressed because it is too large Load Diff