Skip to content

Commit

Permalink
rework compiler version
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudgiuliani committed Mar 5, 2024
1 parent d63f360 commit 275ce47
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

val androidCompileSDK : String by project
val androidMinSDK : String by project
val composeCompiler : String by project
val jetpackComposeCompiler : String by project

android {
compileSdk = androidCompileSDK.toInt()
Expand All @@ -19,7 +19,7 @@ android {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = composeCompiler
kotlinCompilerExtensionVersion = jetpackComposeCompiler
}
}

Expand Down
4 changes: 2 additions & 2 deletions projects/compose/koin-androidx-compose/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

val androidCompileSDK : String by project
val androidMinSDK : String by project
val composeCompiler : String by project
val jetpackComposeCompiler : String by project

android {
compileSdk = androidCompileSDK.toInt()
Expand All @@ -19,7 +19,7 @@ android {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = composeCompiler
kotlinCompilerExtensionVersion = jetpackComposeCompiler
}
}

Expand Down
2 changes: 1 addition & 1 deletion projects/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ koinVersion=3.6.0-alpha3
koinComposeVersion=1.2.0-alpha3

#Compose
composeCompiler=1.5.10
jetpackComposeCompiler=1.5.10

#Android
android.useAndroidX=true
Expand Down

0 comments on commit 275ce47

Please sign in to comment.