Any help getting EAP up and going with android stu...
# eap
p
Any help getting EAP up and going with android studio and gradle? I’ve added : buildscript { repositories { jcenter() maven { url “http://dl.bintray.com/kotlin/kotlin-eap-1.1” } maven { url “https://plugins.gradle.org/m2/” } } dependencies { classpath “org.jetbrains.kotlinkotlin gradle plugin$project.ext.kotlinVersion” } } and using: apply plugin ‘kotlin’ apply plugin ‘kotlin-kapt’ however getting this error: Error:Could not find org.jetbrains.kotlinkotlin annotation processing1.1.3-eap-68. Searched in the following locations: https://repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-annotation-processing/1.1.3-eap-68/kotlin-annotation-processing-1.1.3-eap-68.pom https://repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-annotation-processing/1.1.3-eap-68/kotlin-annotation-processing-1.1.3-eap-68.jar Any help would be really appreciated.
Got it - just a gradle config error. This needs to be outside of the buildscript block: repositories { maven { url “http://dl.bintray.com/kotlin/kotlin-eap-1.1” } }