While importing project as gradle have error Cause: unexpected end of block data
. Project has several modules. I\'m using Idea 132.719 and 1.8 gradle.
I see in your comments, @SergeyB, that deleting .gradle in your user dir didn't help, but these steps resolved my issue (which had similar symptoms):
Try applying the idea plugin in Gradle and running it. Then open the project in IntellijIDEA with the .ipr
file that is generated.
I had the same problem just after installation Android Studio version 0.6.1. The buildToolsVersion in \app\build.gradle pointed to correct version (19.0.3) however problem was fixed by changing it to version 19.1
android {
compileSdkVersion 19
buildToolsVersion "19.1" // <- This was changed from 19.0.3
...