[Flutter] Android Build Error,"app:processDebugResource", "app:compileDebugJavaWithJavac"
[사례] Android Build Error,"app:processDebugResource", "app:compileDebugJavaWithJavac" 오류: Execution failed for task ':app:compileDebugJavaWithJavac'. ... Execution failed for task ':app:processDebugResources'. 원인 상황 외부 프로젝트 임포트시 발생 compileSdkVersion 버전이 안맞아 발생 해결 "guild.gardle" 파일에서 현재 시스템에 맞는 버전을 선택 android { compileSdkVersion 27 lintOptions { disable 'InvalidPackage' } defaultConfig { // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). applicationId "com.example.flutterinstaclone" minSdkVersion 16 targetSdkVersion 27 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runne...