Added GUI to FragmentAddBattery, added Room dependencies.

This commit is contained in:
sockenklaus
2022-07-14 21:01:16 +02:00
parent b8abc9326e
commit b25f1aea76
6 changed files with 108 additions and 24 deletions

View File

@@ -35,6 +35,13 @@ android {
}
dependencies {
def room_version = "2.4.2"
implementation "androidx.room:room-runtime:$room_version"
annotationProcessor "androidx.room:room-compiler:$room_version"
implementation "androidx.room:room-rxjava3:$room_version"
implementation "androidx.room:room-paging:2.5.0-alpha02"
implementation 'androidx.core:core-ktx:1.8.0'
implementation 'androidx.appcompat:appcompat:1.4.2'