mirror of
https://github.com/kiwix/kiwix-android.git
synced 2025-09-23 04:33:54 -04:00
Added room compiler and room ktx
This commit is contained in:
parent
1ff9ad6981
commit
0b91c0dfd1
@ -423,4 +423,8 @@ object Libs {
|
||||
* https://developer.android.com/testing
|
||||
*/
|
||||
const val junit: String = "androidx.test.ext:junit:" + Versions.junit
|
||||
|
||||
const val roomKtx = "androidx.room:room-ktx:" + Versions.roomVersion
|
||||
|
||||
const val roomCompiler = "androidx.room:room-compiler:" + Versions.roomVersion
|
||||
}
|
||||
|
@ -114,6 +114,8 @@ object Versions {
|
||||
|
||||
const val junit: String = "1.1.2"
|
||||
|
||||
const val roomVersion = "2.3.0"
|
||||
|
||||
/**
|
||||
* Current version: "6.2"
|
||||
* See issue 19: How to update Gradle itself?
|
||||
|
@ -200,6 +200,8 @@ class AllProjectConfigurer {
|
||||
implementation(Libs.rxandroid)
|
||||
implementation(Libs.rxjava)
|
||||
implementation(Libs.preference_ktx)
|
||||
implementation(Libs.roomKtx)
|
||||
kapt(Libs.roomCompiler)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user