Merge pull request #758 from Unpublished/fixLint

exclude auto-value from apk to fix lint error
This commit is contained in:
David Luhmer 2019-04-12 17:20:48 -03:00 committed by GitHub
commit 724838fc22
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 4 deletions

View file

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

View file

@ -151,9 +151,6 @@ dependencies {
implementation 'com.jakewharton:butterknife: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 'org.greenrobot:eventbus:3.1.1'
@ -165,7 +162,10 @@ dependencies {
//implementation 'org.apache.commons:commons-lang3:3.4'
implementation 'com.github.gabrielemariotti.changeloglib:changelog:2.1.0'
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'