Remove auto-value dependency

PiperOrigin-RevId: 278398045
This commit is contained in:
olly 2019-11-04 17:35:04 +00:00 committed by Oliver Woodman
parent 165ff55502
commit 5968c8345b
2 changed files with 0 additions and 6 deletions

View File

@ -65,18 +65,14 @@ dependencies {
androidTestImplementation 'androidx.test:runner:' + androidxTestVersion
androidTestImplementation 'androidx.test.ext:junit:' + androidxTestVersion
androidTestImplementation 'com.google.truth:truth:' + truthVersion
androidTestImplementation 'com.google.auto.value:auto-value-annotations:' + autoValueVersion
androidTestImplementation 'com.linkedin.dexmaker:dexmaker:' + dexmakerVersion
androidTestImplementation 'com.linkedin.dexmaker:dexmaker-mockito:' + dexmakerVersion
androidTestImplementation 'org.mockito:mockito-core:' + mockitoVersion
androidTestAnnotationProcessor 'com.google.auto.value:auto-value:' + autoValueVersion
testImplementation 'androidx.test:core:' + androidxTestVersion
testImplementation 'androidx.test.ext:junit:' + androidxTestVersion
testImplementation 'com.google.truth:truth:' + truthVersion
testImplementation 'org.mockito:mockito-core:' + mockitoVersion
testImplementation 'org.robolectric:robolectric:' + robolectricVersion
testImplementation 'com.google.auto.value:auto-value-annotations:' + autoValueVersion
testAnnotationProcessor 'com.google.auto.value:auto-value:' + autoValueVersion
}
ext {

View File

@ -44,8 +44,6 @@ dependencies {
api 'com.google.truth:truth:' + truthVersion
implementation 'androidx.annotation:annotation:' + androidxAnnotationVersion
implementation project(modulePrefix + 'library-core')
implementation 'com.google.auto.value:auto-value-annotations:' + autoValueVersion
annotationProcessor 'com.google.auto.value:auto-value:' + autoValueVersion
testImplementation project(modulePrefix + 'testutils')
testImplementation 'org.robolectric:robolectric:' + robolectricVersion
}