-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c758b44
commit e555472
Showing
51 changed files
with
538 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,4 +24,4 @@ SPEC CHECKSUMS: | |
|
||
PODFILE CHECKSUM: 0dc93a6f6109335ea8cd3f91d2c87cc8c99f04a3 | ||
|
||
COCOAPODS: 1.15.2 | ||
COCOAPODS: 1.12.1 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-frameworks.sh
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
plugins { | ||
alias(libs.plugins.kotlin.multiplatform) | ||
alias(libs.plugins.compose) | ||
} | ||
compose { | ||
kotlinCompilerPlugin.set(libs.versions.composeCompiler.get()) | ||
} | ||
kotlin { | ||
jvmToolchain(libs.versions.jdk.get().toInt()) | ||
jvm { | ||
compilations.all { | ||
kotlinOptions.jvmTarget = libs.versions.jdk.get() | ||
} | ||
} | ||
iosArm64() | ||
iosSimulatorArm64() | ||
applyDefaultHierarchyTemplate() | ||
sourceSets { | ||
commonMain.dependencies { | ||
implementation(project(":shared")) | ||
implementation(project(":shared-compose-ui")) | ||
|
||
implementation(kotlin("test")) | ||
|
||
implementation(compose.ui) | ||
implementation(compose.runtime) | ||
implementation(compose.foundation) | ||
implementation(compose.material) | ||
implementation(compose.material3) | ||
implementation(compose.materialIconsExtended) | ||
|
||
@OptIn(org.jetbrains.compose.ExperimentalComposeLibrary::class) | ||
implementation(compose.uiTest) | ||
|
||
implementation(libs.koin.core) | ||
implementation(libs.turbine) | ||
} | ||
commonTest.dependencies { | ||
} | ||
jvmMain.dependencies { | ||
implementation(libs.decompose) | ||
implementation(libs.koin.core.jvm) | ||
implementation(compose.desktop.uiTestJUnit4) | ||
implementation(compose.desktop.currentOs) | ||
implementation(libs.coroutines.swing) | ||
} | ||
jvmTest.dependencies { | ||
implementation(compose.desktop.currentOs) | ||
} | ||
} | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 9 additions & 6 deletions
15
...softartdev/notedelight/ui/BaseTestCase.kt → ...softartdev/notedelight/ui/BaseTestCase.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 6 additions & 3 deletions
9
...tdev/notedelight/ui/cases/CrudTestCase.kt → ...tdev/notedelight/ui/cases/CrudTestCase.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.