I\'m also trying to import the ABS in new updated Android Studio. I\'m following this tutorial.
but on step Adding Action Bar Sherlock library to Android St
Create a build.gradle with:
task getHomeDir << {
println gradle.gradleHomeDir
}
Then run it with:
gradle getHomeDir
You should see something like:
/usr/local/Cellar/gradle/1.6/libexec
You can use that to populate the Gradle plugin, and you’re off.
http://www.rabblemedia.net/blog/setting-up-gradle-plugin-for-intellij/