Skip to content

Commit

Permalink
update dsl
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielittner committed Aug 9, 2023
1 parent 470a124 commit aea032c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
4 changes: 3 additions & 1 deletion flowredux/flowredux.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ plugins {
freeletics {
explicitApi()

addCommonTargets()
multiplatform {
addCommonTargets()
}
}

dependencies {
Expand Down
5 changes: 4 additions & 1 deletion sample/android/sample-android.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ plugins {
}

freeletics {
enableCompose()
optIn("kotlinx.coroutines.ExperimentalCoroutinesApi")

android {
enableCompose()
}
}

dependencies {
Expand Down
6 changes: 4 additions & 2 deletions sample/shared_code/sample-shared_code.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ plugins {
freeletics {
optIn("kotlinx.coroutines.ExperimentalCoroutinesApi")

addJvmTarget()
addIosTargets("shared", true)
multiplatform {
addJvmTarget()
addIosTargets("shared", true)
}
}

dependencies {
Expand Down

0 comments on commit aea032c

Please sign in to comment.