I'm trying to switch from eclipse to android studio. I exported my project with gradle in Eclipse and imported it in android studio. Now I get these error:
You are using an unsupported version of Gradle. Please use version 1.10.
I can't solve the problem with this:
Android-Studio upgraded from 0.1.9 to 0.2.0 causing gradle build errors now
because I don't have the classpath in my build.gradle. My looks like this:
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
compile project(':Core')
}
Anybody know what I have to do?