Skip to content

Commit acde5a5

Browse files
committed
Update libs as required by Google
1 parent 7726c98 commit acde5a5

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

app/build.gradle

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ android {
1919
}
2020
}
2121
defaultConfig {
22-
compileSdk 34
22+
compileSdk 35
2323
applicationId "com.mikifus.padland"
24-
minSdkVersion 19
25-
targetSdkVersion 34
24+
minSdkVersion 21
25+
targetSdkVersion 35
2626
versionName '3.3'
27-
versionCode 29
27+
versionCode 30
2828
multiDexEnabled true
2929
vectorDrawables.useSupportLibrary = true
3030
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
@@ -72,19 +72,19 @@ room {
7272
}
7373

7474
dependencies {
75-
implementation 'androidx.core:core-ktx:1.13.1'
75+
implementation 'androidx.core:core-ktx:1.16.0'
7676
implementation 'com.github.paolorotolo:appintro:6.3.1'
77-
implementation 'androidx.recyclerview:recyclerview:1.3.2'
77+
implementation 'androidx.recyclerview:recyclerview:1.4.0'
7878
implementation 'com.google.android.material:material:1.12.0'
79-
implementation 'androidx.recyclerview:recyclerview-selection:1.1.0'
79+
implementation 'androidx.recyclerview:recyclerview-selection:1.2.0'
8080
implementation 'com.android.support.constraint:constraint-layout:2.0.4'
8181
implementation "androidx.preference:preference-ktx:1.2.1"
8282
implementation 'com.github.martin-stone:hsv-alpha-color-picker-android:3.1.0'
83-
implementation 'com.google.code.gson:gson:2.10.1'
84-
implementation 'androidx.webkit:webkit:1.11.0'
83+
implementation 'com.google.code.gson:gson:2.13.1'
84+
implementation 'androidx.webkit:webkit:1.14.0'
8585

8686
// Room database
87-
def room_version = "2.6.1"
87+
def room_version = "2.7.2"
8888

8989
implementation("androidx.room:room-runtime:$room_version")
9090
annotationProcessor("androidx.room:room-compiler:$room_version")
@@ -97,8 +97,8 @@ dependencies {
9797
// // optional - Kotlin Extensions and Coroutines support for Room
9898
implementation("androidx.room:room-ktx:$room_version")
9999

100-
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.4"
101-
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.8.4"
100+
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.2"
101+
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.9.2"
102102

103103

104104
constraints {
@@ -113,13 +113,13 @@ dependencies {
113113
// 'androidTest' dependencies for instrumentation (tests on device).
114114
// These are for room database migration test.
115115
androidTestImplementation "androidx.test.ext:junit-ktx:1.2.1"
116-
androidTestImplementation "androidx.room:room-testing:2.6.1"
116+
androidTestImplementation "androidx.room:room-testing:2.7.2"
117117
androidTestImplementation "androidx.test:runner:1.6.2"
118118

119119

120120
// 'test' dependencies to run unit tests from the IDE
121121
testImplementation "androidx.test.ext:junit-ktx:1.2.1"
122-
testImplementation 'org.robolectric:robolectric:4.11.1'
122+
testImplementation 'org.robolectric:robolectric:4.15.1'
123123

124124
// AndroidJUnitRunner and JUnit Rules
125125
testImplementation "androidx.test:runner:1.6.2"

app/src/main/java/com/mikifus/padland/Dialogs/EditServerDialog.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class EditServerDialog: NewServerDialog() {
2525
}
2626
data?.get("jquery")?.let {
2727
mJqueryCheckBox?.isChecked = it as Boolean
28-
if(!it) {
28+
if(it == false) {
2929
mLiteCheckbox?.isChecked = false
3030
}
3131
}

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ buildscript {
1010
google()
1111
}
1212
dependencies {
13-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20"
14-
classpath 'com.android.tools.build:gradle:8.6.0'
13+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.0"
14+
classpath 'com.android.tools.build:gradle:8.11.1'
1515
// NOTE: Do not place your application dependencies here; they belong
1616
// in the individual module build.gradle files
1717
}
1818
}
1919

2020
plugins {
21-
id("androidx.room") version "2.6.1" apply false
21+
id("androidx.room") version "2.7.2" apply false
2222
}
2323

2424
allprojects {
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Thu Feb 08 21:05:18 CET 2024
1+
#Fri Jul 18 13:36:46 CEST 2025
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)