#android kotlin databinding 썸네일형 리스트형 [Android][Kotlin] Databindg과 Kotlin 사용 시 Android 에서 제공해주는 Databinding을 Kotlin으로 사용하고자 할 경우,빌드에서는 에러가 발생합니다. Error:Execution failed for task ':app:compileDebugJavaWithJavac'. Unresolved reference: databinding Error:Execution failed for task ':app:compileDebugKotlin'. 위와 같은 에러가 발생 할 경우 아래와 같이 수정해보세요. /build.gradle // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext.kotlin_.. 더보기 [Kotlin] unresolved reference databinding Kotlin 기본 설정 : http://gogorchg.tistory.com/entry/Kotlin-Kotlin%EC%9D%84-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0-%EC%9C%84%ED%95%9C-%EA%B8%B0%EB%B3%B8-%EC%84%A4%EC%A0%95 Kotlin 기본 설정을 한 후, Android DataBinding을 같이 사용하고자 해서 아래와 같이 databinding 을 추가 합니다. android { ... dataBinding { enabled = true } ... } 그리고 빌드하면 문제 없이 잘 빌드가 완료 됩니다. DataBinding 소스도 문제 없이 동작 되구요. 코딩이 깔끔하게 작성이 됩니다. 하지만! Launching App을 할 경.. 더보기 이전 1 다음