kopia lustrzana https://github.com/meshtastic/Meshtastic-Android
chore(deps): update kotlin_version to v2 (major) (#1050)
rodzic
07e7a40ba0
commit
eb48eaf9d3
|
@ -21,3 +21,6 @@ keystore.properties
|
|||
|
||||
# AGP profiling traces
|
||||
*.trace
|
||||
|
||||
# Kotlin compiler
|
||||
.kotlin
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
plugins {
|
||||
id 'com.android.application'
|
||||
id 'kotlin-android'
|
||||
id 'kotlin-parcelize'
|
||||
id "org.jetbrains.kotlin.android"
|
||||
id "org.jetbrains.kotlin.plugin.compose"
|
||||
id "org.jetbrains.kotlin.plugin.parcelize"
|
||||
id 'kotlinx-serialization'
|
||||
id 'com.google.dagger.hilt.android'
|
||||
id 'de.mobilej.unmock'
|
||||
|
@ -92,9 +93,6 @@ android {
|
|||
aidl true
|
||||
buildConfig true
|
||||
}
|
||||
composeOptions {
|
||||
kotlinCompilerExtensionVersion = "1.5.14"
|
||||
}
|
||||
// Configure the build-logic plugins to target JDK 17
|
||||
// This matches the JDK used to build the project, and is not related to what is running on device.
|
||||
compileOptions {
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
buildscript {
|
||||
ext {
|
||||
useCrashlytics = false
|
||||
kotlin_version = '1.9.24'
|
||||
kotlin_version = '2.0.0'
|
||||
hilt_version = '2.51.1'
|
||||
protobuf_version = '4.27.2'
|
||||
}
|
||||
|
@ -39,6 +39,7 @@ buildscript {
|
|||
plugins {
|
||||
id "org.jetbrains.kotlin.jvm" version "$kotlin_version" apply false
|
||||
id "com.google.devtools.ksp" version "1.9.24-1.0.20" apply false
|
||||
id "org.jetbrains.kotlin.plugin.compose" version "$kotlin_version" apply false
|
||||
}
|
||||
|
||||
allprojects {
|
||||
|
|
Ładowanie…
Reference in New Issue