Skip to content

Commit

Permalink
feat: upgraded libraries, fixed issue with R8
Browse files Browse the repository at this point in the history
  • Loading branch information
kikoso committed Nov 4, 2023
1 parent 429a91b commit 76791e9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ android {
dependencies {
implementation "androidx.appcompat:appcompat:1.6.1"
implementation "androidx.core:core-ktx:1.12.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.8.20"
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.9.10"
implementation 'androidx.multidex:multidex:2.0.1'
implementation "com.google.android.gms:play-services-maps:18.2.0"
implementation "androidx.fragment:fragment-ktx:1.6.2"
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ buildscript {
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
classpath 'com.android.tools.build:gradle:8.1.2'
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.5.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10"
classpath "com.google.dagger:hilt-android-gradle-plugin:2.48"
classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1"
classpath 'com.mxalbert.gradle:jacoco-android:0.2.1'
Expand Down
6 changes: 3 additions & 3 deletions places-ktx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

android {
compileSdk 33
compileSdk 34

defaultConfig {
minSdk 21
targetSdk 33
targetSdk 34
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'consumer-rules.pro'
multiDexEnabled true
Expand All @@ -46,7 +46,7 @@ android {
}

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.8.20"
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.9.10"
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2"
implementation "com.android.volley:volley:1.2.1"
Expand Down

0 comments on commit 76791e9

Please sign in to comment.