Use new Gradle configurations for Android modules.

This commit is contained in:
akwizgran
2017-11-17 12:56:33 +00:00
parent e8c54a609c
commit 49826fdc56
2 changed files with 26 additions and 26 deletions

View File

@@ -24,12 +24,12 @@ android {
}
dependencies {
compile project(path: ':bramble-core', configuration: 'default')
compile fileTree(dir: 'libs', include: '*.jar')
implementation project(path: ':bramble-core', configuration: 'default')
implementation fileTree(dir: 'libs', include: '*.jar')
annotationProcessor 'com.google.dagger:dagger-compiler:2.0.2'
provided 'javax.annotation:jsr250-api:1.0'
compileOnly 'javax.annotation:jsr250-api:1.0'
}
dependencyVerification {