Skip to content

Commit 5003dfd

Browse files
committed
Update dependencies
1 parent 383a7aa commit 5003dfd

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

app/build.gradle

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ def myKeyAlias = System.getenv('KEY_ALIAS')
1111
def myKeyPassword = System.getenv('KEY_PASSWORD')
1212

1313
android {
14-
compileSdk 35
14+
compileSdk 36
1515
defaultConfig {
1616
applicationId "org.nitri.opentopo"
1717
minSdkVersion 21
1818
targetSdkVersion 35
19-
versionCode 50
20-
versionName "1.22"
19+
versionCode 52
20+
versionName "1.22.2"
2121
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2222
vectorDrawables.useSupportLibrary = true
2323
}
@@ -92,26 +92,26 @@ android {
9292
dependencies {
9393
implementation fileTree(dir: 'libs', include: ['*.jar'])
9494
//noinspection GradleCompatible
95-
implementation 'androidx.core:core-ktx:1.15.0'
96-
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7"
97-
implementation 'androidx.appcompat:appcompat:1.7.0'
98-
implementation 'androidx.constraintlayout:constraintlayout:2.2.0'
99-
implementation 'androidx.recyclerview:recyclerview:1.3.2'
95+
implementation 'androidx.core:core-ktx:1.16.0'
96+
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1"
97+
implementation 'androidx.appcompat:appcompat:1.7.1'
98+
implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
99+
implementation 'androidx.recyclerview:recyclerview:1.4.0'
100100
implementation 'com.google.android.material:material:1.12.0'
101-
implementation 'org.osmdroid:osmdroid-android:6.1.18'
101+
implementation 'org.osmdroid:osmdroid-android:6.1.20'
102102
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
103103
implementation 'com.github.PhilJay:MPAndroidChart:v3.0.3'
104-
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
105-
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
106-
implementation 'com.google.code.gson:gson:2.10.1'
104+
implementation 'com.squareup.retrofit2:retrofit:3.0.0'
105+
implementation 'com.squareup.retrofit2:converter-gson:3.0.0'
106+
implementation 'com.google.code.gson:gson:2.13.1'
107107
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
108-
implementation 'androidx.room:room-runtime:2.6.1'
108+
implementation 'androidx.room:room-runtime:2.7.2'
109109
implementation 'androidx.test.ext:junit:1.2.1'
110-
annotationProcessor 'androidx.room:room-compiler:2.6.1'
111-
implementation "androidx.room:room-ktx:2.6.1"
112-
kapt "androidx.room:room-compiler:2.6.1"
110+
annotationProcessor 'androidx.room:room-compiler:2.7.2'
111+
implementation "androidx.room:room-ktx:2.7.2"
112+
kapt "androidx.room:room-compiler:2.7.2"
113113
implementation "androidx.preference:preference:1.2.1"
114-
implementation 'net.danlew:android.joda:2.12.1.1'
114+
implementation 'net.danlew:android.joda:2.13.1'
115115
implementation 'com.github.k3b:k3b-geoHelper:1.1.5'
116116
implementation 'com.github.ticofab:android-gpx-parser:2.3.1'
117117
implementation('com.squareup.picasso:picasso:2.71828') {
@@ -123,8 +123,8 @@ dependencies {
123123
exclude group: 'com.android.support', module: 'support-core-utils'
124124
exclude group: 'com.android.support', module: 'exifinterface'
125125
}
126-
playImplementation 'com.google.android.gms:play-services-ads:23.6.0'
127-
playImplementation 'com.google.android.ump:user-messaging-platform:3.1.0'
126+
playImplementation 'com.google.android.gms:play-services-ads:24.4.0'
127+
playImplementation 'com.google.android.ump:user-messaging-platform:3.2.0'
128128
testImplementation 'junit:junit:4.13.2'
129129
androidTestImplementation 'androidx.test:runner:1.6.2'
130130
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'

app/src/main/java/org/nitri/opentopo/nearby/NearbyFragment.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class NearbyFragment : Fragment(), NearbyAdapter.OnItemClickListener {
5555
"User-Agent", getString(R.string.app_name) + " "
5656
+ BuildConfig.VERSION_NAME
5757
)
58-
.method(original.method(), original.body())
58+
.method(original.method, original.body)
5959
.build()
6060
chain.proceed(request)
6161
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
}
99
dependencies {
1010
classpath 'com.android.tools.build:gradle:8.11.0'
11-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.21"
11+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.0"
1212
}
1313
}
1414

0 commit comments

Comments
 (0)