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 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
...