skydoves / TheMovies

🎬 A demo project for The Movie DB based on Kotlin MVVM architecture and material design & animations.
MIT License
496 stars 114 forks source link

Upgrade gradle plugins and some artifacts. #12

Closed Pravin-Divraniya closed 4 years ago

Pravin-Divraniya commented 4 years ago

update the Android Gradle plugin from the current version 3.5.3 to version 3.6.1 and Gradle to version 5.6.4

Update below artifacts: materialVersion -> 1.2.0-alpha05 androidFragment -> 1.2.2 roomVersion -> 2.2.4

Resolve below warning. Warning:- Incremental annotation processing requested, but support is disabled because the following processors are not incremental: androidx.room.RoomProcessor

Solution:-

Enable Kapt Incremental annotation processing requeste

kapt.incremental.apt=true

Enable android.databinding.annotationprocessor.ProcessDataBinding (DYNAMIC)

android.databinding.incremental=true

Decrease gradle builds time

kapt.use.worker.api=true