update dependencies

This commit is contained in:
2023-09-12 14:11:12 +06:00
parent 14337ccb46
commit f17613f3fb
3 changed files with 17 additions and 3 deletions

View File

@@ -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"