-
Notifications
You must be signed in to change notification settings - Fork 314
Android 개발 과정
TreeJin99 edited this page Nov 7, 2022
·
2 revisions
- Kotlin 버전 확인 Perferences -> Languages & Frameworks -> Kotlin 아래 사진 참고
- 앱 또는 모듈의 build.gradle 파일에 들어갑니다.
- 다음과 같이 앱 또는 모듈의 build.gradle 파일에서 버전들을 확인할 수 있습니다.
- 만일 Compose가 1.2 미만의 버전일 경우 다음을 참고하여 변경 후 우측 상단에 'Sync now' 버튼을 눌러 설정을 완료해주세요!
android {
buildFeatures {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.3.2"
}
kotlinOptions {
jvmTarget = "1.8"
}
}