Skip to content

Commit 57d97f0

Browse files
committed
Update target SDK, data and dependencies
1 parent 8c487a0 commit 57d97f0

6 files changed

Lines changed: 640 additions & 632 deletions

File tree

Hyperrail/build.gradle

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,15 @@ apply plugin: 'com.android.application'
88
apply plugin: 'com.google.gms.google-services'
99
apply plugin: 'com.google.firebase.crashlytics'
1010

11-
def VERSION_CODE = 57
12-
def VERSION_NAME = '1.3.3'
11+
def VERSION_CODE = 58
12+
def VERSION_NAME = '1.3.4'
1313

1414
android {
15-
compileSdk 33
16-
buildToolsVersion '33.0.0'
15+
compileSdk 34
1716
defaultConfig {
1817
applicationId "be.hyperrail.android"
1918
minSdkVersion 21
20-
targetSdkVersion 33
19+
targetSdkVersion 34
2120
versionCode VERSION_CODE
2221
versionName VERSION_NAME
2322
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -47,26 +46,26 @@ android {
4746

4847
dependencies {
4948
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
50-
implementation 'com.google.android.gms:play-services-maps:18.1.0'
49+
implementation 'com.google.android.gms:play-services-maps:18.2.0'
5150
implementation fileTree(include: ['*.jar'], dir: 'libs')
5251

5352
implementation 'com.android.volley:volley:1.2.1@aar'
5453
implementation 'joda-time:joda-time:2.11.0'
5554
implementation 'com.squareup.picasso:picasso:2.71828'
5655

57-
def lifecycle_version = "2.5.1"
56+
def lifecycle_version = "2.6.2"
5857
// Force the same lifecycle-viewmodel for kotlin and java.
5958
implementation "androidx.lifecycle:lifecycle-viewmodel:$lifecycle_version"
6059
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
6160

62-
implementation 'androidx.appcompat:appcompat:1.5.1'
61+
implementation 'androidx.appcompat:appcompat:1.6.1'
6362
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
6463
implementation 'androidx.cardview:cardview:1.0.0'
65-
implementation 'androidx.recyclerview:recyclerview:1.2.1'
66-
implementation 'androidx.preference:preference:1.2.0'
67-
implementation 'com.google.android.material:material:1.6.1'
68-
implementation 'com.google.android.gms:play-services-location:20.0.0'
69-
implementation 'com.google.firebase:firebase-crashlytics:18.2.13'
64+
implementation 'androidx.recyclerview:recyclerview:1.3.2'
65+
implementation 'androidx.preference:preference:1.2.1'
66+
implementation 'com.google.android.material:material:1.10.0'
67+
implementation 'com.google.android.gms:play-services-location:21.0.1'
68+
implementation 'com.google.firebase:firebase-crashlytics:18.6.0'
7069

7170
testImplementation 'junit:junit:4.13.2'
7271
testImplementation 'org.json:json:20220320'

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
google()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:7.3.1'
10+
classpath 'com.android.tools.build:gradle:8.2.0'
1111
classpath 'com.google.gms:google-services:4.3.15'
1212
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.2'
1313
}

gradle.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99

1010
# Specifies the JVM arguments used for the daemon process.
1111
# The setting is particularly useful for tweaking memory settings.
12+
android.defaults.buildfeatures.buildconfig=true
1213
android.enableJetifier=true
14+
android.nonFinalResIds=false
15+
android.nonTransitiveRClass=true
1316
android.useAndroidX=true
1417
org.gradle.jvmargs=-Xmx2048m
1518

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-all.zip

opentransport_be/src/main/java/be/hyperrail/opentransportdata/be/irail/IrailStopsDatabase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class IrailStopsDatabase extends SQLiteOpenHelper {
3737
private final Resources mResources;
3838

3939
IrailStopsDatabase(Context context) {
40-
super(context, "irail-stations.db", null, 2022050200);
40+
super(context, "irail-stations.db", null, 2023120300);
4141
this.mResources = context.getResources();
4242
}
4343

0 commit comments

Comments
 (0)