Fix android extensions maven dependencies

`kotlin-android-extensions-runtime` and `kotlin-android-extensions-compiler`
had `com.google.android:android` as a provided dependency, but
during transition to Kotlin Gradle build the dependency was declared
as `runtime` instead of `compileOnly`.
This commit is contained in:
Alexey Tsvetkov
2017-10-17 18:32:19 +03:00
parent eaa3b3ccf0
commit 896dacc835
2 changed files with 2 additions and 3 deletions
@@ -14,7 +14,7 @@ dependencies {
compileOnly(project(":compiler:backend"))
compileOnly(project(":kotlin-android-extensions-runtime"))
runtime(projectRuntimeJar(":kotlin-compiler-embeddable"))
runtime(commonDep("com.google.android", "android"))
compileOnly(commonDep("com.google.android", "android"))
}