mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-22 08:13:49 +00:00
update dependencies
This commit is contained in:
parent
14337ccb46
commit
f17613f3fb
@ -19,6 +19,12 @@ allprojects {
|
||||
}
|
||||
|
||||
releaseMode = (project.hasProperty('RELEASE_MODE') && project.property('RELEASE_MODE') == "true") || System.getenv('RELEASE_MODE') == "true"
|
||||
String compilerPluginVersionFromProperties = (String) project.properties["compose.kotlinCompilerPluginVersion"]
|
||||
String compilerPluginVersionFromLibrariesVersions = libs.versions.compose.kotlin.get()
|
||||
composePluginKotlinVersion = compilerPluginVersionFromProperties
|
||||
if (compilerPluginVersionFromProperties == null) {
|
||||
composePluginKotlinVersion = compilerPluginVersionFromLibrariesVersions
|
||||
}
|
||||
|
||||
mppProjectWithSerializationPresetPath = "${rootProject.projectDir.absolutePath}/mppProjectWithSerialization.gradle"
|
||||
mppProjectWithSerializationAndComposePresetPath = "${rootProject.projectDir.absolutePath}/mppProjectWithSerializationAndCompose.gradle"
|
||||
|
@ -1,6 +1,7 @@
|
||||
[versions]
|
||||
|
||||
kt = "1.9.10"
|
||||
kt = "1.9.20-Beta"
|
||||
compose-kotlin = "1.5.2.1-Beta"
|
||||
kt-serialization = "1.6.0"
|
||||
kt-coroutines = "1.7.3"
|
||||
|
||||
@ -21,7 +22,7 @@ koin = "3.4.3"
|
||||
|
||||
okio = "3.5.0"
|
||||
|
||||
ksp = "1.9.10-1.0.13"
|
||||
ksp = "1.9.20-Beta-1.0.13"
|
||||
kotlin-poet = "1.14.2"
|
||||
|
||||
versions = "0.47.0"
|
||||
@ -29,7 +30,7 @@ versions = "0.47.0"
|
||||
android-gradle = "7.4.2"
|
||||
dexcount = "4.0.0"
|
||||
|
||||
android-coreKtx = "1.10.1"
|
||||
android-coreKtx = "1.12.0"
|
||||
android-recyclerView = "1.3.1"
|
||||
android-appCompat = "1.6.1"
|
||||
android-fragment = "1.6.1"
|
||||
|
@ -73,3 +73,10 @@ java {
|
||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||
targetCompatibility = JavaVersion.VERSION_1_8
|
||||
}
|
||||
|
||||
|
||||
compose {
|
||||
if (composePluginKotlinVersion != null && !composePluginKotlinVersion.isEmpty()) {
|
||||
kotlinCompilerPlugin.set(composePluginKotlinVersion)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user