1
0
Fork 0
mirror of https://github.com/MatomoCamp/matomocamp-companion-android.git synced 2024-09-19 16:13:46 +02:00

update dependencies and release

This commit is contained in:
Lukas Winkler 2022-10-26 00:51:56 +02:00
parent ba1c2060c3
commit 38556e6074
Signed by: lukas
GPG key ID: 54DE4D798D244853
3 changed files with 10 additions and 10 deletions

View file

@ -14,10 +14,10 @@ android {
defaultConfig { defaultConfig {
applicationId "org.matomocamp.companion" applicationId "org.matomocamp.companion"
minSdkVersion 19 minSdkVersion 19
targetSdkVersion 32 targetSdkVersion 33
multiDexEnabled = true multiDexEnabled = true
versionCode 1900210 versionCode 1900301
versionName "2.1.0" versionName "3.0.1"
// Supported languages // Supported languages
resConfigs "en", "de", "fr" resConfigs "en", "de", "fr"
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true
@ -111,10 +111,10 @@ dependencies {
kapt "com.google.dagger:hilt-compiler:$hilt_version" kapt "com.google.dagger:hilt-compiler:$hilt_version"
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4' implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4'
implementation 'androidx.core:core-ktx:1.9.0' implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.activity:activity-ktx:1.6.0' implementation 'androidx.activity:activity-ktx:1.6.1'
implementation 'androidx.fragment:fragment-ktx:1.5.3' implementation 'androidx.fragment:fragment-ktx:1.5.4'
implementation 'androidx.appcompat:appcompat:1.5.1' 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.coordinatorlayout:coordinatorlayout:1.2.0'
implementation 'androidx.recyclerview:recyclerview:1.2.1' implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'androidx.viewpager2:viewpager2:1.1.0-beta01' implementation 'androidx.viewpager2:viewpager2:1.1.0-beta01'
@ -123,7 +123,7 @@ dependencies {
implementation 'androidx.browser:browser:1.4.0' implementation 'androidx.browser:browser:1.4.0'
implementation "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycle_version" implementation "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycle_version"
implementation "androidx.lifecycle:lifecycle-viewmodel-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-ktx:$room_version"
implementation "androidx.room:room-paging:$room_version" implementation "androidx.room:room-paging:$room_version"
implementation "androidx.datastore:datastore-preferences:1.0.0" implementation "androidx.datastore:datastore-preferences:1.0.0"

View file

@ -15,7 +15,7 @@ object MatomoCampUrls {
get() = "https://matomocamp.org/" get() = "https://matomocamp.org/"
fun getPerson(id: Number): String { 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 { fun getLocalNavigationToLocation(locationSlug: String): String {

View file

@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules. // Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript { buildscript {
ext { ext {
kotlin_version = '1.7.10' kotlin_version = '1.7.20'
hilt_version = '2.43.2' hilt_version = '2.43.2'
} }
repositories { repositories {
@ -9,7 +9,7 @@ buildscript {
mavenCentral() mavenCentral()
} }
dependencies { 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 "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version" classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
} }