Hi all. Now I write simple test android project on...
# android
d
Hi all. Now I write simple test android project on pure Kotlin (without Java). Because I use databinding, I also have this issue with gradle 2.14.1. So I've try to swith to kotlin 1.0.4 eap. I've added new repo to my build gradle : repositories { jcenter() maven { url "https://dl.bintray.com/kotlin/kotlin-eap/" } } but I got next error: Searched in the following locations: file/C/android-sdk-win/extras/m2repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.0.4-eap-62/kotlin-annotation-processing-1.0.4-eap-62.pom file/C/android-sdk-win/extras/m2repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.0.4-eap-62/kotlin-annotation-processing-1.0.4-eap-62.jar file/C/android-sdk-win/extras/google/m2repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.0.4-eap-62/kotlin-annotation-processing-1.0.4-eap-62.pom file/C/android-sdk-win/extras/google/m2repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.0.4-eap-62/kotlin-annotation-processing-1.0.4-eap-62.jar file/C/android-sdk-win/extras/android/m2repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.0.4-eap-62/kotlin-annotation-processing-1.0.4-eap-62.pom file/C/android-sdk-win/extras/android/m2repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.0.4-eap-62/kotlin-annotation-processing-1.0.4-eap-62.jar https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-annotation-processing/1.0.4-eap-62/kotlin-annotation-processing-1.0.4-eap-62.pom https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-annotation-processing/1.0.4-eap-62/kotlin-annotation-processing-1.0.4-eap-62.jar Seems like gradle don't try downoad this package from added repo. So, what I do wrong?