[Android] The 'kotlin-android-extensions' Gradle plugin is no longer supported. Please use this migration guide () to start working with View Binding () and the 'kotlin-parcelize' plugin. 에러

알린·2023년 3월 17일
0

TroubleShooting

목록 보기
3/25

The 'kotlin-android-extensions' Gradle plugin is no longer supported. Please use this migration guide (https://goo.gle/kotlin-android-extensions-deprecation) to start working with View Binding (https://developer.android.com/topic/libraries/view-binding) and the 'kotlin-parcelize' plugin.

해결방법

gradle(:app)에서

plugins {
    .
    .
    id 'kotlin-android-extensions'
}

코드를

plugins {
    .
    .
    id 'kotlin-parcelize'
}

로 바꾸기

profile
Android 짱이 되고싶은 개발 기록 (+ ios도 조금씩,,👩🏻‍💻)

0개의 댓글