please fix the version conflict either by updating the version of the google-services plugin (9.0.0) 에러를 만난다면 최상위 gradle에 dependencies { classpath 'com.android.tools.build:gradle:3.0.1' classpath 'com.google.gms:google-services:3.0.0' // for firebase }요렇게 작성 하지 않았거나,build.gradle 에 apply plugin: 'com.google.gms.google-services' 을 파일의 맨 아래 줄에 작성 하지 않으면 발생 한다.
Holo 테마를 지정하니 API 11부터 지원한다는 메시지가 뜬다. minSDKVersion을 AndroidManifest.xml 파일에서 수정해주었다. 그래도 똑같은 메시지가 남아있다. 안드로이드 스튜디오에서는 다른가 싶어 minSdkVersion 검색해보았다. build.gradle 파일에서 키워드 발견하였다. defaultConfig { applicationId "com.google.a" minSdkVersion 11 targetSdkVersion 11 } 위와 같이 수정해 주니 해결되었다. (팁) 충돌 방지 위해 AndroidManifest.xml 에서는 uses-sdk 부분 삭제하는 것이 좋다. 그리고, 안드로이드 스튜디오 메뉴에서도 가능하다. app - 오른쪽 마우스 - Open Module ..