Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

Wook No.1

androidx.core:core-ktx:1.6.0 이슈 본문

Android

androidx.core:core-ktx:1.6.0 이슈

Wook No.1 2022. 2. 3. 16:09

androidx core 버전을 업데이트 했더니

기존에 잘 사용했던 by lazy, scope function을 사용하면 Error가 발생했다.

dependencies {
...
    implementation 'androidx.core:core-ktx:1.7.0'
...
}

Unresolved reference: lazy

Unresolved reference: run

Unresolved reference: apply

Unresolved reference: let

Unresolved reference: alos

 

해결방법은

androidx core 를 다시 1.5.0 이하로 낮추거나

dependencies {
...
    implementation 'androidx.core:core-ktx:1.5.0'
...
}

 

build.gradle(app)의 defaultConfig 에 아래 코드를 추가하면 된다.

configurations.all {
    resolutionStrategy { force 'androidx.core:core-ktx:1.6.0' }
}

 

Comments