다들 Bootstrap call site Error가 나면,
compileOption에 자바 버전만 8(Java 1.8)로 바꿔주면 해결된다고 하셨는데,
저는 해결되지 않았습니다!
파이어베이스(Firebase) dependencies 추가 하다가 에러를 만난 저의 경우는,
아래 내용과 같이 안드로이드 버전도 바꿔줬더니 해결되었습니다.
해결 방법은 아래와 같습니다.
build.gradle (Project:) :app
1) android { } 안에 compileSdkVersion 과 targetSdkVersion을 32로 수정해줬습니다.
(원래 31로 되어있었습니다)
2) android { } 안에 complileOptions {
targetCompatibility = "8"
sourceCompatibility = "8"
}
을 추가해줬습니다.
android {
compileSdkVersion 32
buildToolsVersion "29.0.2"
defaultConfig {
...
targetSdkVersion 32
...
}
buildTypes {
...
}
compileOptions {
targetCompatibility = "8"
sourceCompatibility = "8"
}
}
다른 분들께도 도움이 되셨으면 좋겠네요!
'Mobile > Android' 카테고리의 다른 글
[안드로이드] [에러 간단 해결] Manifest merger failed with multiple errors, see logs (0) | 2022.06.17 |
---|---|
[안드로이드] Manifest application name 은 무슨 용도? (0) | 2022.06.16 |
[안드로이드] 카카오 로그인 :: APP HashKey 코드 1줄로 초간단 생성 (0) | 2022.06.16 |
[안드로이드] 카카오 로그인 API 1단계 :: 사용 환경 설정 (SDK, APP키, HashKey) 이대로만 따라해보세요! (0) | 2022.06.15 |
[안드로이드] [3분만에 이해하기] View란 대체 무엇인가 (0) | 2022.06.10 |