Skip to content

Commit

Permalink
decouple compose compiler version with the rest of compose version an…
Browse files Browse the repository at this point in the history
…d update Kotlin version
  • Loading branch information
wiryadev committed Jun 30, 2022
1 parent f76bd79 commit b534614
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ android {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion compose_version
kotlinCompilerExtensionVersion compose_compiler_version
}
}

Expand Down
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ buildscript {
ext {
library_version = '2.3.3'

kotlin_version = '1.6.10'
kotlin_version = '1.7.0'
compose_version = '1.1.1'
compose_compiler_version = '1.2.0'
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ android {
}

composeOptions {
kotlinCompilerExtensionVersion "$compose_version"
kotlinCompilerExtensionVersion "$compose_compiler_version"
}

packagingOptions {
Expand Down

0 comments on commit b534614

Please sign in to comment.