├── .circleci ├── build-container │ ├── Containerfile │ └── Dockerfile └── config.yml ├── .gitignore ├── .images ├── Kotlin Multiplatform diagram simple.xml ├── Kotlin Multiplatform diagram.xml ├── diagram_detailed.png ├── diagram_simple.png ├── hello_android.png ├── hello_ios.png ├── hello_js_browser.png ├── hello_js_node.png ├── hello_jvm.png └── hello_macos.png ├── README.md ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── hello_android_app ├── build.gradle.kts ├── proguard-rules.pro └── src │ ├── androidMain │ ├── AndroidManifest.xml │ ├── kotlin │ │ └── cz │ │ │ └── sazel │ │ │ └── hellokotlin │ │ │ └── MainActivity.kt │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── androidTest │ └── kotlin │ └── cz │ └── sazel │ └── hellokotlin │ └── ApplicationTest.kt ├── hello_console_app ├── build.gradle.kts └── src │ ├── commonMain │ └── kotlin │ │ └── cz │ │ └── sazel │ │ └── hellokotlin │ │ └── arch.kt │ ├── linuxArm64Main │ └── kotlin │ │ └── cz │ │ └── sazel │ │ └── hellokotlin │ │ └── arch.kt │ ├── linuxX64Main │ └── kotlin │ │ └── cz │ │ └── sazel │ │ └── hellokotlin │ │ └── arch.kt │ ├── macosArm64Main │ └── kotlin │ │ └── cz │ │ └── sazel │ │ └── hellokotlin │ │ └── arch.kt │ ├── macosX64Main │ └── kotlin │ │ └── cz │ │ └── sazel │ │ └── hellokotlin │ │ └── arch.kt │ └── nativeMain │ └── kotlin │ └── cz │ └── sazel │ └── hellokotlin │ └── main.kt ├── hello_ios_app ├── hello_ios_app.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── hello_ios_app │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── iOSApp.swift ├── hello_js_browser_app ├── build.gradle.kts └── src │ ├── jsMain │ ├── kotlin │ │ └── cz │ │ │ └── sazel │ │ │ └── hellokotlin │ │ │ ├── console │ │ │ └── DOMConsole.kt │ │ │ └── main.kt │ └── resources │ │ └── index.html │ └── jsTest │ └── kotlin │ └── JsBrowserTest.kt ├── hello_js_node_app ├── build.gradle.kts └── src │ ├── jsMain │ ├── kotlin │ │ └── cz │ │ │ └── sazel │ │ │ └── hellokotlin │ │ │ └── main.kt │ └── resources │ │ ├── app.js │ │ └── package.json │ └── jsTest │ └── kotlin │ └── JsNodeJsTest.kt ├── hello_jvm_app ├── build.gradle.kts └── src │ ├── jvmMain │ └── kotlin │ │ └── cz │ │ └── sazel │ │ └── hellokotlin │ │ └── main.kt │ └── jvmTest │ └── kotlin │ └── JvmTest.kt ├── hello_shared ├── build.gradle.kts └── src │ ├── androidMain │ ├── AndroidManifest.xml │ └── kotlin │ │ └── cz │ │ └── sazel │ │ └── hellokotlin │ │ └── console │ │ └── AndroidConsole.kt │ ├── commonMain │ └── kotlin │ │ └── cz │ │ └── sazel │ │ └── hellokotlin │ │ ├── IMath.kt │ │ ├── Math.kt │ │ ├── SharedClass.kt │ │ └── console │ │ ├── Console.kt │ │ └── IConsole.kt │ ├── commonTest │ └── kotlin │ │ └── SharedClassTest.kt │ ├── iosMain │ └── kotlin │ │ └── cz │ │ └── sazel │ │ └── hellokotlin │ │ └── console │ │ └── IosConsole.kt │ ├── jsMain │ └── kotlin │ │ └── cz │ │ └── sazel │ │ └── hellokotlin │ │ ├── Math.kt │ │ └── console │ │ └── Console.kt │ ├── jvmMain │ └── kotlin │ │ └── cz │ │ └── sazel │ │ └── hellokotlin │ │ ├── Math.kt │ │ ├── console │ │ └── Console.kt │ │ └── jvm │ │ ├── Math.kt │ │ └── console │ │ └── Console.kt │ └── nativeMain │ └── kotlin │ └── cz │ └── sazel │ └── hellokotlin │ ├── Math.kt │ └── console │ └── Console.kt └── settings.gradle.kts /.circleci/build-container/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/.circleci/build-container/Containerfile -------------------------------------------------------------------------------- /.circleci/build-container/Dockerfile: -------------------------------------------------------------------------------- 1 | Containerfile -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/.gitignore -------------------------------------------------------------------------------- /.images/Kotlin Multiplatform diagram simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/.images/Kotlin Multiplatform diagram simple.xml -------------------------------------------------------------------------------- /.images/Kotlin Multiplatform diagram.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/.images/Kotlin Multiplatform diagram.xml -------------------------------------------------------------------------------- /.images/diagram_detailed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/.images/diagram_detailed.png -------------------------------------------------------------------------------- /.images/diagram_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/.images/diagram_simple.png -------------------------------------------------------------------------------- /.images/hello_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/.images/hello_android.png -------------------------------------------------------------------------------- /.images/hello_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/.images/hello_ios.png -------------------------------------------------------------------------------- /.images/hello_js_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/.images/hello_js_browser.png -------------------------------------------------------------------------------- /.images/hello_js_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/.images/hello_js_node.png -------------------------------------------------------------------------------- /.images/hello_jvm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/.images/hello_jvm.png -------------------------------------------------------------------------------- /.images/hello_macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/.images/hello_macos.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/gradlew.bat -------------------------------------------------------------------------------- /hello_android_app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_android_app/build.gradle.kts -------------------------------------------------------------------------------- /hello_android_app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_android_app/proguard-rules.pro -------------------------------------------------------------------------------- /hello_android_app/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_android_app/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /hello_android_app/src/androidMain/kotlin/cz/sazel/hellokotlin/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_android_app/src/androidMain/kotlin/cz/sazel/hellokotlin/MainActivity.kt -------------------------------------------------------------------------------- /hello_android_app/src/androidMain/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_android_app/src/androidMain/res/layout/activity_main.xml -------------------------------------------------------------------------------- /hello_android_app/src/androidMain/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_android_app/src/androidMain/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /hello_android_app/src/androidMain/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_android_app/src/androidMain/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /hello_android_app/src/androidMain/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_android_app/src/androidMain/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /hello_android_app/src/androidMain/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_android_app/src/androidMain/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /hello_android_app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_android_app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /hello_android_app/src/androidMain/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_android_app/src/androidMain/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /hello_android_app/src/androidMain/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_android_app/src/androidMain/res/values/colors.xml -------------------------------------------------------------------------------- /hello_android_app/src/androidMain/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_android_app/src/androidMain/res/values/dimens.xml -------------------------------------------------------------------------------- /hello_android_app/src/androidMain/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_android_app/src/androidMain/res/values/strings.xml -------------------------------------------------------------------------------- /hello_android_app/src/androidMain/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_android_app/src/androidMain/res/values/styles.xml -------------------------------------------------------------------------------- /hello_android_app/src/androidTest/kotlin/cz/sazel/hellokotlin/ApplicationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_android_app/src/androidTest/kotlin/cz/sazel/hellokotlin/ApplicationTest.kt -------------------------------------------------------------------------------- /hello_console_app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_console_app/build.gradle.kts -------------------------------------------------------------------------------- /hello_console_app/src/commonMain/kotlin/cz/sazel/hellokotlin/arch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_console_app/src/commonMain/kotlin/cz/sazel/hellokotlin/arch.kt -------------------------------------------------------------------------------- /hello_console_app/src/linuxArm64Main/kotlin/cz/sazel/hellokotlin/arch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_console_app/src/linuxArm64Main/kotlin/cz/sazel/hellokotlin/arch.kt -------------------------------------------------------------------------------- /hello_console_app/src/linuxX64Main/kotlin/cz/sazel/hellokotlin/arch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_console_app/src/linuxX64Main/kotlin/cz/sazel/hellokotlin/arch.kt -------------------------------------------------------------------------------- /hello_console_app/src/macosArm64Main/kotlin/cz/sazel/hellokotlin/arch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_console_app/src/macosArm64Main/kotlin/cz/sazel/hellokotlin/arch.kt -------------------------------------------------------------------------------- /hello_console_app/src/macosX64Main/kotlin/cz/sazel/hellokotlin/arch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_console_app/src/macosX64Main/kotlin/cz/sazel/hellokotlin/arch.kt -------------------------------------------------------------------------------- /hello_console_app/src/nativeMain/kotlin/cz/sazel/hellokotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_console_app/src/nativeMain/kotlin/cz/sazel/hellokotlin/main.kt -------------------------------------------------------------------------------- /hello_ios_app/hello_ios_app.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_ios_app/hello_ios_app.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /hello_ios_app/hello_ios_app.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_ios_app/hello_ios_app.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /hello_ios_app/hello_ios_app.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_ios_app/hello_ios_app.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /hello_ios_app/hello_ios_app/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_ios_app/hello_ios_app/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /hello_ios_app/hello_ios_app/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_ios_app/hello_ios_app/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /hello_ios_app/hello_ios_app/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_ios_app/hello_ios_app/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /hello_ios_app/hello_ios_app/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_ios_app/hello_ios_app/ContentView.swift -------------------------------------------------------------------------------- /hello_ios_app/hello_ios_app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_ios_app/hello_ios_app/Info.plist -------------------------------------------------------------------------------- /hello_ios_app/hello_ios_app/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_ios_app/hello_ios_app/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /hello_ios_app/hello_ios_app/iOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_ios_app/hello_ios_app/iOSApp.swift -------------------------------------------------------------------------------- /hello_js_browser_app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_js_browser_app/build.gradle.kts -------------------------------------------------------------------------------- /hello_js_browser_app/src/jsMain/kotlin/cz/sazel/hellokotlin/console/DOMConsole.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_js_browser_app/src/jsMain/kotlin/cz/sazel/hellokotlin/console/DOMConsole.kt -------------------------------------------------------------------------------- /hello_js_browser_app/src/jsMain/kotlin/cz/sazel/hellokotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_js_browser_app/src/jsMain/kotlin/cz/sazel/hellokotlin/main.kt -------------------------------------------------------------------------------- /hello_js_browser_app/src/jsMain/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_js_browser_app/src/jsMain/resources/index.html -------------------------------------------------------------------------------- /hello_js_browser_app/src/jsTest/kotlin/JsBrowserTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_js_browser_app/src/jsTest/kotlin/JsBrowserTest.kt -------------------------------------------------------------------------------- /hello_js_node_app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_js_node_app/build.gradle.kts -------------------------------------------------------------------------------- /hello_js_node_app/src/jsMain/kotlin/cz/sazel/hellokotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_js_node_app/src/jsMain/kotlin/cz/sazel/hellokotlin/main.kt -------------------------------------------------------------------------------- /hello_js_node_app/src/jsMain/resources/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_js_node_app/src/jsMain/resources/app.js -------------------------------------------------------------------------------- /hello_js_node_app/src/jsMain/resources/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_js_node_app/src/jsMain/resources/package.json -------------------------------------------------------------------------------- /hello_js_node_app/src/jsTest/kotlin/JsNodeJsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_js_node_app/src/jsTest/kotlin/JsNodeJsTest.kt -------------------------------------------------------------------------------- /hello_jvm_app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_jvm_app/build.gradle.kts -------------------------------------------------------------------------------- /hello_jvm_app/src/jvmMain/kotlin/cz/sazel/hellokotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_jvm_app/src/jvmMain/kotlin/cz/sazel/hellokotlin/main.kt -------------------------------------------------------------------------------- /hello_jvm_app/src/jvmTest/kotlin/JvmTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_jvm_app/src/jvmTest/kotlin/JvmTest.kt -------------------------------------------------------------------------------- /hello_shared/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_shared/build.gradle.kts -------------------------------------------------------------------------------- /hello_shared/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_shared/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /hello_shared/src/androidMain/kotlin/cz/sazel/hellokotlin/console/AndroidConsole.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_shared/src/androidMain/kotlin/cz/sazel/hellokotlin/console/AndroidConsole.kt -------------------------------------------------------------------------------- /hello_shared/src/commonMain/kotlin/cz/sazel/hellokotlin/IMath.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_shared/src/commonMain/kotlin/cz/sazel/hellokotlin/IMath.kt -------------------------------------------------------------------------------- /hello_shared/src/commonMain/kotlin/cz/sazel/hellokotlin/Math.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_shared/src/commonMain/kotlin/cz/sazel/hellokotlin/Math.kt -------------------------------------------------------------------------------- /hello_shared/src/commonMain/kotlin/cz/sazel/hellokotlin/SharedClass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_shared/src/commonMain/kotlin/cz/sazel/hellokotlin/SharedClass.kt -------------------------------------------------------------------------------- /hello_shared/src/commonMain/kotlin/cz/sazel/hellokotlin/console/Console.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_shared/src/commonMain/kotlin/cz/sazel/hellokotlin/console/Console.kt -------------------------------------------------------------------------------- /hello_shared/src/commonMain/kotlin/cz/sazel/hellokotlin/console/IConsole.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_shared/src/commonMain/kotlin/cz/sazel/hellokotlin/console/IConsole.kt -------------------------------------------------------------------------------- /hello_shared/src/commonTest/kotlin/SharedClassTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_shared/src/commonTest/kotlin/SharedClassTest.kt -------------------------------------------------------------------------------- /hello_shared/src/iosMain/kotlin/cz/sazel/hellokotlin/console/IosConsole.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_shared/src/iosMain/kotlin/cz/sazel/hellokotlin/console/IosConsole.kt -------------------------------------------------------------------------------- /hello_shared/src/jsMain/kotlin/cz/sazel/hellokotlin/Math.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_shared/src/jsMain/kotlin/cz/sazel/hellokotlin/Math.kt -------------------------------------------------------------------------------- /hello_shared/src/jsMain/kotlin/cz/sazel/hellokotlin/console/Console.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_shared/src/jsMain/kotlin/cz/sazel/hellokotlin/console/Console.kt -------------------------------------------------------------------------------- /hello_shared/src/jvmMain/kotlin/cz/sazel/hellokotlin/Math.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_shared/src/jvmMain/kotlin/cz/sazel/hellokotlin/Math.kt -------------------------------------------------------------------------------- /hello_shared/src/jvmMain/kotlin/cz/sazel/hellokotlin/console/Console.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_shared/src/jvmMain/kotlin/cz/sazel/hellokotlin/console/Console.kt -------------------------------------------------------------------------------- /hello_shared/src/jvmMain/kotlin/cz/sazel/hellokotlin/jvm/Math.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_shared/src/jvmMain/kotlin/cz/sazel/hellokotlin/jvm/Math.kt -------------------------------------------------------------------------------- /hello_shared/src/jvmMain/kotlin/cz/sazel/hellokotlin/jvm/console/Console.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_shared/src/jvmMain/kotlin/cz/sazel/hellokotlin/jvm/console/Console.kt -------------------------------------------------------------------------------- /hello_shared/src/nativeMain/kotlin/cz/sazel/hellokotlin/Math.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_shared/src/nativeMain/kotlin/cz/sazel/hellokotlin/Math.kt -------------------------------------------------------------------------------- /hello_shared/src/nativeMain/kotlin/cz/sazel/hellokotlin/console/Console.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/hello_shared/src/nativeMain/kotlin/cz/sazel/hellokotlin/console/Console.kt -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wojta/hello-kotlin-multiplatform/HEAD/settings.gradle.kts --------------------------------------------------------------------------------