In the process of trying to get my project running on Gradle I have installed and setup Gradle for my new project.
My problem is that I keep getting an error
I have yet to find a good solution within Android Studio, but this has worked for me on several projects:
Also, remember to use the latest version of the Gradle build tools. If you want, you can setup Gradle to use the most recent version like this:
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.0'
}
}
Simpler Solution nowadays
All you need to do is "Import Project" in android studio to import eclipse projects. After that, try to "Syncronize project" and if it fails, and pops up that error u had, it should also be accompanied with an entry in "Entry log" as to what is the problem, "Cause: failed to find target android-10" for me. Once you fix that you should be able to successfully sync project and keep on going.