Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
onyxvd committed Nov 29, 2023
1 parent 4c9782e commit dcaaa36
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ android {
}

dependencies {
def room_version = "2.5.1"
def room_version = "2.6.0"

implementation 'androidx.legacy:legacy-support-v4:1.0.0'
kapt "org.androidannotations:androidannotations:4.8.0"
Expand All @@ -118,7 +118,7 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"

// KTX extensions
implementation 'androidx.core:core-ktx:1.10.0'
implementation 'androidx.core:core-ktx:1.12.0'
implementation "androidx.fragment:fragment-ktx:1.6.2"
implementation "androidx.preference:preference-ktx:1.2.1"
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.2"
Expand All @@ -142,7 +142,7 @@ dependencies {

implementation 'org.osmdroid:osmdroid-android:6.1.16'
implementation 'com.github.MKergall:osmbonuspack:6.9.0'
implementation 'com.google.android.material:material:1.8.0'
implementation 'com.google.android.material:material:1.10.0'
implementation 'androidx.legacy:legacy-support-v13:1.0.0'

// http://square.github.io/retrofit/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,9 @@ void onUp() {

@Override
public void onBackPressed() {
super.onBackPressed();
pauseMonitoring();

}

void pauseMonitoring() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ void onUp() {

@Override
public void onBackPressed() {
super.onBackPressed();
confirmCancel();
}

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = "1.8.21"
ext.kotlin_version = "1.9.10"

repositories {
google()
Expand All @@ -14,8 +14,8 @@ buildscript {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.novoda:gradle-build-properties-plugin:0.4.1'

classpath 'com.google.gms:google-services:4.3.15'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.5'
classpath 'com.google.gms:google-services:4.4.0'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.9'
}
}

Expand Down

0 comments on commit dcaaa36

Please sign in to comment.