update parts of toolchain and dependencies

This commit is contained in:
Vincent Breitmoser
2022-12-22 15:50:26 +01:00
parent 8e4b248acf
commit a17a6e9131
2 changed files with 8 additions and 9 deletions

View File

@@ -4,11 +4,13 @@ apply plugin: 'com.squareup.sqldelight'
dependencies {
// from local Android SDK
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.2.1'
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.annotation:annotation:1.1.0'
implementation 'androidx.annotation:annotation:1.5.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.sqlite:sqlite-framework:2.2.0'
implementation 'com.google.android.material:material:1.6.1'
// JCenter etc.
implementation 'com.journeyapps:zxing-android-embedded:3.4.0'
@@ -79,9 +81,6 @@ dependencies {
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
annotationProcessor 'androidx.lifecycle:lifecycle-compiler:2.2.0'
implementation 'androidx.sqlite:sqlite-framework:2.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
// for debugging the db. don't enable by default, this will expose the database no the network!
// debugImplementation 'com.amitshekhar.android:debug-db:1.0.3'
}