<Case 1>
- 문제점
Error:Execution failed for task ':app:compileDebugJava'.
> Cannot find System Java Compiler. Ensure that you have installed a JDK (not just a JRE) and configured your JAVA_HOME system variable to point to the according directory.
- 해결책
기본 JRE 경로를 사용하지말고 별도 설치된 JDK경로로 변경
File >> Other Setting >> Default Project Structure
<Case 2>
- 문제점
Gradle sync failed: Unsupported method: BaseConfig.getApplicationIdSuffix()
- 해결책
build.gradle 내의 gradle 버전을 지원하는 버전으로 변경
예)
classpath 'com.android.tools.build:gradle:1.3.0' to
classpath 'com.android.tools.build:gradle:2.3.2'