Make generated classes work on Android Studio

This commit is contained in:
2017-05-28 11:39:07 -04:00
parent 1746920699
commit 6255fe2d12
2 changed files with 14 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
apply plugin: 'idea'
apply plugin: 'com.android.application'
apply plugin: 'jacoco'
@@ -81,6 +82,10 @@ dependencies {
androidTestAnnotationProcessor 'com.google.auto.factory:auto-factory:1.0-beta3'
androidTestAnnotationProcessor 'com.jakewharton:butterknife-compiler:8.6.1-SNAPSHOT'
testAnnotationProcessor 'com.google.dagger:dagger-compiler:2.11-rc2'
testAnnotationProcessor 'com.google.auto.factory:auto-factory:1.0-beta3'
testAnnotationProcessor 'com.jakewharton:butterknife-compiler:8.6.1-SNAPSHOT'
implementation('com.opencsv:opencsv:3.9') {
exclude group: 'commons-logging', module: 'commons-logging'
}