Fixed build with recent Android Studio

This commit is contained in:
Sylvain Berfini 2025-01-08 15:22:19 +01:00
parent ab4e5068af
commit 054a6cf566
2 changed files with 7 additions and 4 deletions

View file

@ -82,6 +82,9 @@ android {
sourceCompatibility = 17
targetCompatibility = 17
}
kotlinOptions {
jvmTarget = '17'
}
compileSdkVersion 34
defaultConfig {

View file

@ -11,10 +11,10 @@ buildscript {
} // for com.github.chrisbanes:PhotoView
}
dependencies {
classpath 'com.android.tools.build:gradle:8.7.2'
classpath 'com.google.gms:google-services:4.3.15'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.21'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.6'
classpath 'com.android.tools.build:gradle:8.7.3'
classpath 'com.google.gms:google-services:4.4.2'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.21'
classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.2'
}
}