├── .editorconfig ├── .github ├── CODEOWNERS └── workflows │ ├── check.yml │ ├── detekt-analysis.yml │ ├── release.yml │ └── sandbox.yml ├── .gitignore ├── .sdkmanrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── gradle.properties ├── gradle ├── detekt.yml ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── kotlin-js-store └── yarn.lock ├── modules ├── template-kmp-library-core │ ├── build.gradle.kts │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── platform.kt │ │ ├── androidNativeMain │ │ └── kotlin │ │ │ └── platform.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── CoreLib.kt │ │ ├── iosMain │ │ └── kotlin │ │ │ └── platform.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ └── platform.kt │ │ ├── jvmMain │ │ └── kotlin │ │ │ └── platform.kt │ │ ├── linuxMain │ │ └── kotlin │ │ │ └── platform.kt │ │ ├── macosMain │ │ └── kotlin │ │ │ └── platform.kt │ │ ├── main │ │ └── AndroidManifest.xml │ │ ├── mingwMain │ │ └── kotlin │ │ │ └── platform.kt │ │ ├── tvosMain │ │ └── kotlin │ │ │ └── platform.kt │ │ ├── wasmMain │ │ └── kotlin │ │ │ └── platform.kt │ │ └── watchosMain │ │ └── kotlin │ │ └── platform.kt └── template-kmp-library-dsl │ ├── build.gradle.kts │ └── src │ └── commonMain │ └── kotlin │ └── DslLib.kt ├── renovate.json ├── sandbox ├── build.gradle.kts ├── gradle ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── src │ ├── main │ └── kotlin │ │ └── main.kt │ └── test │ └── kotlin │ └── MainTest.kt ├── scripts ├── removeGhPackageVersion.main.kts ├── setup.sh ├── setupMingw.sh ├── setupOSX.sh └── setupUbuntu.sh ├── settings.gradle.kts ├── src └── commonMain │ └── kotlin │ └── placeholder.kt └── tests ├── template-kmp-library-core-tests ├── build.gradle.kts └── src │ └── commonTest │ └── kotlin │ └── CoreLibTest.kt ├── template-kmp-library-dsl-tests ├── build.gradle.kts └── src │ └── commonTest │ └── kotlin │ └── DslLibTest.kt └── test-utils ├── build.gradle.kts └── src ├── androidMain └── kotlin │ └── Env.kt ├── commonMain └── kotlin │ └── Env.kt ├── jsMain └── kotlin │ └── Env.kt ├── jvmMain └── kotlin │ └── Env.kt └── nativeMain └── kotlin └── Env.kt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @mpetuska 2 | -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/detekt-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/.github/workflows/detekt-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/sandbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/.github/workflows/sandbox.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/.gitignore -------------------------------------------------------------------------------- /.sdkmanrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/.sdkmanrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/detekt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/gradle/detekt.yml -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/gradlew.bat -------------------------------------------------------------------------------- /kotlin-js-store/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/kotlin-js-store/yarn.lock -------------------------------------------------------------------------------- /modules/template-kmp-library-core/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/modules/template-kmp-library-core/build.gradle.kts -------------------------------------------------------------------------------- /modules/template-kmp-library-core/src/androidMain/kotlin/platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/modules/template-kmp-library-core/src/androidMain/kotlin/platform.kt -------------------------------------------------------------------------------- /modules/template-kmp-library-core/src/androidNativeMain/kotlin/platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/modules/template-kmp-library-core/src/androidNativeMain/kotlin/platform.kt -------------------------------------------------------------------------------- /modules/template-kmp-library-core/src/commonMain/kotlin/CoreLib.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/modules/template-kmp-library-core/src/commonMain/kotlin/CoreLib.kt -------------------------------------------------------------------------------- /modules/template-kmp-library-core/src/iosMain/kotlin/platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/modules/template-kmp-library-core/src/iosMain/kotlin/platform.kt -------------------------------------------------------------------------------- /modules/template-kmp-library-core/src/jsMain/kotlin/platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/modules/template-kmp-library-core/src/jsMain/kotlin/platform.kt -------------------------------------------------------------------------------- /modules/template-kmp-library-core/src/jvmMain/kotlin/platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/modules/template-kmp-library-core/src/jvmMain/kotlin/platform.kt -------------------------------------------------------------------------------- /modules/template-kmp-library-core/src/linuxMain/kotlin/platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/modules/template-kmp-library-core/src/linuxMain/kotlin/platform.kt -------------------------------------------------------------------------------- /modules/template-kmp-library-core/src/macosMain/kotlin/platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/modules/template-kmp-library-core/src/macosMain/kotlin/platform.kt -------------------------------------------------------------------------------- /modules/template-kmp-library-core/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/template-kmp-library-core/src/mingwMain/kotlin/platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/modules/template-kmp-library-core/src/mingwMain/kotlin/platform.kt -------------------------------------------------------------------------------- /modules/template-kmp-library-core/src/tvosMain/kotlin/platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/modules/template-kmp-library-core/src/tvosMain/kotlin/platform.kt -------------------------------------------------------------------------------- /modules/template-kmp-library-core/src/wasmMain/kotlin/platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/modules/template-kmp-library-core/src/wasmMain/kotlin/platform.kt -------------------------------------------------------------------------------- /modules/template-kmp-library-core/src/watchosMain/kotlin/platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/modules/template-kmp-library-core/src/watchosMain/kotlin/platform.kt -------------------------------------------------------------------------------- /modules/template-kmp-library-dsl/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/modules/template-kmp-library-dsl/build.gradle.kts -------------------------------------------------------------------------------- /modules/template-kmp-library-dsl/src/commonMain/kotlin/DslLib.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/modules/template-kmp-library-dsl/src/commonMain/kotlin/DslLib.kt -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/renovate.json -------------------------------------------------------------------------------- /sandbox/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/sandbox/build.gradle.kts -------------------------------------------------------------------------------- /sandbox/gradle: -------------------------------------------------------------------------------- 1 | ../gradle -------------------------------------------------------------------------------- /sandbox/gradlew: -------------------------------------------------------------------------------- 1 | ../gradlew -------------------------------------------------------------------------------- /sandbox/gradlew.bat: -------------------------------------------------------------------------------- 1 | ../gradlew.bat -------------------------------------------------------------------------------- /sandbox/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/sandbox/settings.gradle.kts -------------------------------------------------------------------------------- /sandbox/src/main/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/sandbox/src/main/kotlin/main.kt -------------------------------------------------------------------------------- /sandbox/src/test/kotlin/MainTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/sandbox/src/test/kotlin/MainTest.kt -------------------------------------------------------------------------------- /scripts/removeGhPackageVersion.main.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/scripts/removeGhPackageVersion.main.kts -------------------------------------------------------------------------------- /scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/scripts/setup.sh -------------------------------------------------------------------------------- /scripts/setupMingw.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "Not needed yet!" -------------------------------------------------------------------------------- /scripts/setupOSX.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "Not needed yet!" -------------------------------------------------------------------------------- /scripts/setupUbuntu.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "Not needed yet!" -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/commonMain/kotlin/placeholder.kt: -------------------------------------------------------------------------------- 1 | package dev.petuska.template.kmp.library 2 | -------------------------------------------------------------------------------- /tests/template-kmp-library-core-tests/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/tests/template-kmp-library-core-tests/build.gradle.kts -------------------------------------------------------------------------------- /tests/template-kmp-library-core-tests/src/commonTest/kotlin/CoreLibTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/tests/template-kmp-library-core-tests/src/commonTest/kotlin/CoreLibTest.kt -------------------------------------------------------------------------------- /tests/template-kmp-library-dsl-tests/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/tests/template-kmp-library-dsl-tests/build.gradle.kts -------------------------------------------------------------------------------- /tests/template-kmp-library-dsl-tests/src/commonTest/kotlin/DslLibTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/tests/template-kmp-library-dsl-tests/src/commonTest/kotlin/DslLibTest.kt -------------------------------------------------------------------------------- /tests/test-utils/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/tests/test-utils/build.gradle.kts -------------------------------------------------------------------------------- /tests/test-utils/src/androidMain/kotlin/Env.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/tests/test-utils/src/androidMain/kotlin/Env.kt -------------------------------------------------------------------------------- /tests/test-utils/src/commonMain/kotlin/Env.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/tests/test-utils/src/commonMain/kotlin/Env.kt -------------------------------------------------------------------------------- /tests/test-utils/src/jsMain/kotlin/Env.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/tests/test-utils/src/jsMain/kotlin/Env.kt -------------------------------------------------------------------------------- /tests/test-utils/src/jvmMain/kotlin/Env.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/tests/test-utils/src/jvmMain/kotlin/Env.kt -------------------------------------------------------------------------------- /tests/test-utils/src/nativeMain/kotlin/Env.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpetuska/template-kmp-library/HEAD/tests/test-utils/src/nativeMain/kotlin/Env.kt --------------------------------------------------------------------------------