Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
udenr committed Jun 14, 2024
1 parent dc24186 commit 57e743c
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions BackupApp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -91,18 +91,18 @@ dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])

implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4'

implementation 'androidx.core:core-ktx:1.8.0'
implementation 'androidx.appcompat:appcompat:1.4.2'
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'com.google.android.material:material:1.6.1'
implementation 'androidx.recyclerview:recyclerview:1.3.2'
implementation 'com.google.android.material:material:1.11.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'

testImplementation 'junit:junit:4.13.1'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'

// OpenPGP API
implementation 'org.sufficientlysecure:openpgp-api:12.0'
Expand All @@ -115,20 +115,20 @@ dependencies {
testImplementation "androidx.work:work-testing:$work_version"

// Room Database
def roomVersion = "2.5.1"
def roomVersion = "2.6.1"
implementation "androidx.room:room-runtime:$roomVersion"
annotationProcessor "androidx.room:room-compiler:$roomVersion"
kapt "androidx.room:room-compiler:$roomVersion"
implementation "androidx.room:room-ktx:$roomVersion"

// Lifecycle
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.0"
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.5.0'
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.2"
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.8.2'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
implementation 'androidx.lifecycle:lifecycle-common-java8:2.5.0'
implementation 'androidx.lifecycle:lifecycle-common-java8:2.8.2'

// Preferences
def preference_version = "1.2.0"
def preference_version = "1.2.1"
implementation "androidx.preference:preference-ktx:$preference_version"

// Glide
Expand Down

0 comments on commit 57e743c

Please sign in to comment.