upgraded room version to 2.4.2 to fix kapt exception in common, chat , pulse modules

This commit is contained in:
Jegatheeswaran M
2022-03-23 11:30:47 +05:30
parent 76e5c25d91
commit f6ea9d303b
3 changed files with 12 additions and 8 deletions

View File

@@ -70,5 +70,9 @@ dependencies {
implementation 'androidx.fragment:fragment-ktx:1.3.5'
// Room Database
kapt 'androidx.room:room-compiler:2.3.0'
kapt 'androidx.room:room-compiler:2.4.2'
//Room Paging
implementation "androidx.room:room-paging:2.4.2"
}

View File

@@ -86,9 +86,9 @@ dependencies {
implementation 'in.juspay:hypersdk:2.0.4-rc.27'
// Room Database
kapt 'androidx.room:room-compiler:2.3.0'
api 'androidx.room:room-runtime:2.3.0'
api 'androidx.room:room-ktx:2.3.0'
kapt 'androidx.room:room-compiler:2.4.2'
api 'androidx.room:room-runtime:2.4.2'
api 'androidx.room:room-ktx:2.4.2'
// Paging Library
api 'androidx.paging:paging-runtime-ktx:3.1.1'

View File

@@ -38,16 +38,16 @@ dependencies {
implementation 'androidx.core:core-ktx:1.3.2'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.3.0'
implementation "androidx.room:room-runtime:2.3.0"
implementation "androidx.room:room-runtime:2.4.2"
// Kotlin + coroutines
implementation 'androidx.work:work-runtime-ktx:2.5.0'
// To use Kotlin annotation processing tool (kapt)
kapt "androidx.room:room-compiler:2.3.0"
kapt "androidx.room:room-compiler:2.4.2"
// optional - Kotlin Extensions and Coroutines support for Room
implementation 'androidx.room:room-ktx:2.3.0'
implementation 'androidx.room:room-ktx:2.4.2'
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
@@ -56,7 +56,7 @@ dependencies {
releaseImplementation 'com.readystatesoftware.chuck:library-no-op:1.1.0'
// optional - Test helpers
testImplementation "androidx.room:room-testing:2.3.0"
testImplementation "androidx.room:room-testing:2.4.2"
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'