반응형
1. gradle/libs.versions.toml 파일 생성
[versions]
coreKtx = "1.9.0"
androidApplication = "8.1.0"
[libraries]
core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
[plugins]
android-application = { id = "com.android.application", version.ref = "androidApplication" }
2. app/build.gradle.kt 에 적용
implementation(libs.core.ktx)
3. build.gradle.kt에 적용
plugins {
alias(libs.plugins.android.application) apply false
}
'val Project.libs: LibrariesForLibs' can't be called in this context by implicit receiver. Use the explicit one if necessary
-> 실행은 잘 되지만, libs에 IDE경고가 떴다. (IDE 버그)
4. File > Project Structure > Project > Gradle Version
gradle version을 8.1 이상으로 올리면 완료.
https://github.com/gradle/gradle/issues/22797
<참고>
'IT > Android' 카테고리의 다른 글
android / fcm notification (background data 컨트롤, 다국어 대응) (0) | 2024.06.10 |
---|---|
Android / 키해시 구하기 (0) | 2024.04.30 |
Android version 맞추기 (targetSdk 34 업그레이드/kotlin 버전 업그레이드) (0) | 2024.03.10 |
Compose / 밀어서 삭제 구현 SwipeToDismiss 사용하기 (0) | 2024.03.04 |
Android / 안드로이드 notification Icon 적용 (0) | 2024.03.04 |