使用 Android Studio 開發完成一個小小的 Room 的 APP 後,執行「Run 'app'」時,卻發生了【Execution failed for task ':app:kaptDebugKotlin'.】的錯誤。
Grandle Build Running 時便出現了錯誤 |
查了一下全部的錯誤訊息,出現了「To use Coroutine features, you must add `ktx` artifact from Room as a dependency. androidx.room:room-ktx:<version>」的關鍵訊息,看來有可能是 build.gradle 中少了「implementation "androidx.room:room-ktx:$room_version"」所造成的。
在 build.gradle 中加上 implementation "androidx.room:room-ktx:$room_version" 後,果然就無此錯誤了。
在 build.gradle 中加入了 implementation "androidx.room:room-ktx:$room_version",再執行「Run 'app'」便無此錯誤了 |
留言
張貼留言