exclude auto-value from apk to fix lint error

Signed-off-by: Unpublished <unpublished@gmx.net>
This commit is contained in:
Unpublished 2019-04-12 13:12:33 +02:00
parent 645aea5f99
commit 6515f251a6
2 changed files with 7 additions and 4 deletions

View file

@ -48,6 +48,9 @@ jobs:
- run: - run:
name: Run unit tests name: Run unit tests
command: ./gradlew test command: ./gradlew test
- run:
name: Run Lint Tests
command: ./gradlew lint test
- store_artifacts: - store_artifacts:
path: News-Android-App/build/reports path: News-Android-App/build/reports
destination: reports destination: reports

View file

@ -150,9 +150,6 @@ dependencies {
implementation 'com.jakewharton:butterknife:10.1.0' implementation 'com.jakewharton:butterknife:10.1.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.1.0' annotationProcessor 'com.jakewharton:butterknife-compiler:10.1.0'
compileOnly 'com.google.auto.value:auto-value:1.1'
annotationProcessor 'com.google.auto.value:auto-value:1.1'
implementation 'com.sothree.slidinguppanel:library:3.2.1' implementation 'com.sothree.slidinguppanel:library:3.2.1'
implementation 'org.greenrobot:eventbus:3.1.1' implementation 'org.greenrobot:eventbus:3.1.1'
@ -164,7 +161,10 @@ dependencies {
//implementation 'org.apache.commons:commons-lang3:3.4' //implementation 'org.apache.commons:commons-lang3:3.4'
implementation 'com.github.gabrielemariotti.changeloglib:changelog:2.1.0' implementation 'com.github.gabrielemariotti.changeloglib:changelog:2.1.0'
implementation 'org.jsoup:jsoup:1.11.3' implementation 'org.jsoup:jsoup:1.11.3'
implementation ('net.rdrei.android.dirchooser:library:3.0@aar') { transitive = true } implementation ('net.rdrei.android.dirchooser:library:3.0@aar') {
exclude group: 'com.google.auto.value', module: 'auto-value'
transitive = true
}
implementation 'com.google.dagger:dagger:2.16' implementation 'com.google.dagger:dagger:2.16'