mirror of
https://github.com/jfoucry/Pilldroid.git
synced 2024-11-09 23:41:08 +01:00
Add Room dependencies
This commit is contained in:
parent
c0b0759466
commit
3e38c7223c
1 changed files with 6 additions and 1 deletions
|
@ -102,6 +102,7 @@ sourceSets {
|
|||
}
|
||||
}
|
||||
dependencies {
|
||||
def room_version = "2.4.2"
|
||||
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
||||
testImplementation 'junit:junit:4.13.2'
|
||||
|
||||
|
@ -109,9 +110,13 @@ dependencies {
|
|||
implementation 'androidx.recyclerview:recyclerview:1.2.1'
|
||||
implementation 'com.google.android.material:material:1.5.0'
|
||||
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
||||
|
||||
implementation "androidx:room:room-runtime:$room_version"
|
||||
implementation 'com.journeyapps:zxing-android-embedded:4.3.0'
|
||||
implementation 'androidx.core:core:1.7.0'
|
||||
|
||||
implementation "androidx:room:room-runtime:$room_version"
|
||||
implementation "androidx.room:room-rxjava3:$room_version"
|
||||
testImplementation "androidx.room:room-testing:$room_version"
|
||||
|
||||
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue