import project를 하다보면, 아래와 같은 에러가 발생할 수가 있습니다.

이전 post와 마찬가지 방법으로 해결됩니다.

 

1. 에러 로그

Error:The project is using an unsupported version of the Android Gradle plug-in (0.6.3) 

 

2. 해결 방법

android {
compileSdkVersion 19
buildToolsVersion "19.1"

defaultConfig {
minSdkVersion 8
targetSdkVersion 19
}
}

 

 

 

3. 참조 : http://stackoverflow.com/questions/21583277/i-get-an-error-after-importing-a-project-into-android-studio

 

첨언> import project는 쉽지 않군요.. ㅡㅡ;