We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ui.home에서 error: cannot find symbol kotlin 발생 -> gradle 고치면서 error는 안 뜨고 warning만 발생 함 -> kotlin-android-extensions 사라져서 수정 필요함
기존 gradle
plugins { id("com.android.application") id("kotlin-android") id("kotlin-kapt") id("dagger.hilt.android.plugin") id("kotlin-parcelize") }
수정 gradle
plugins { id("com.android.application") id("kotlin-android") id("kotlin-android-extensions") id("kotlin-kapt") id("dagger.hilt.android.plugin") // id("kotlin-parcelize") }
The text was updated successfully, but these errors were encountered:
#13 [WARNING]
1c81c5d
4d5c79f
No branches or pull requests
ui.home에서 error: cannot find symbol kotlin 발생
-> gradle 고치면서 error는 안 뜨고 warning만 발생 함
-> kotlin-android-extensions 사라져서 수정 필요함
기존 gradle
수정 gradle
The text was updated successfully, but these errors were encountered: