diff --git a/app/build.gradle b/app/build.gradle index 823d835..87ffe59 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -14,10 +14,10 @@ android { defaultConfig { applicationId "org.matomocamp.companion" minSdkVersion 19 - targetSdkVersion 32 + targetSdkVersion 33 multiDexEnabled = true - versionCode 1900210 - versionName "2.1.0" + versionCode 1900301 + versionName "3.0.1" // Supported languages resConfigs "en", "de", "fr" vectorDrawables.useSupportLibrary = true @@ -111,10 +111,10 @@ dependencies { kapt "com.google.dagger:hilt-compiler:$hilt_version" implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4' implementation 'androidx.core:core-ktx:1.9.0' - implementation 'androidx.activity:activity-ktx:1.6.0' - implementation 'androidx.fragment:fragment-ktx:1.5.3' + implementation 'androidx.activity:activity-ktx:1.6.1' + implementation 'androidx.fragment:fragment-ktx:1.5.4' implementation 'androidx.appcompat:appcompat:1.5.1' - implementation 'com.google.android.material:material:1.6.1' + implementation 'com.google.android.material:material:1.7.0' implementation 'androidx.coordinatorlayout:coordinatorlayout:1.2.0' implementation 'androidx.recyclerview:recyclerview:1.2.1' implementation 'androidx.viewpager2:viewpager2:1.1.0-beta01' @@ -123,7 +123,7 @@ dependencies { implementation 'androidx.browser:browser:1.4.0' implementation "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycle_version" implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version" - implementation 'androidx.paging:paging-runtime:3.1.1' + implementation 'androidx.paging:paging-runtime-ktx:3.1.1' implementation "androidx.room:room-ktx:$room_version" implementation "androidx.room:room-paging:$room_version" implementation "androidx.datastore:datastore-preferences:1.0.0" diff --git a/app/src/main/java/org/matomocamp/companion/api/MatomoCampUrls.kt b/app/src/main/java/org/matomocamp/companion/api/MatomoCampUrls.kt index d786633..48160a8 100644 --- a/app/src/main/java/org/matomocamp/companion/api/MatomoCampUrls.kt +++ b/app/src/main/java/org/matomocamp/companion/api/MatomoCampUrls.kt @@ -15,7 +15,7 @@ object MatomoCampUrls { get() = "https://matomocamp.org/" fun getPerson(id: Number): String { - return "https://schedule.matomocamp.org/matomocamp-2021/speaker/by-id/$id/" + return "https://schedule.matomocamp.org/matomocamp-2022/speaker/by-id/$id/" } fun getLocalNavigationToLocation(locationSlug: String): String { diff --git a/build.gradle b/build.gradle index 58c70e6..ed984d9 100644 --- a/build.gradle +++ b/build.gradle @@ -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.7.10' + kotlin_version = '1.7.20' hilt_version = '2.43.2' } repositories { @@ -9,7 +9,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:7.3.0' + classpath 'com.android.tools.build:gradle:7.3.1' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version" }