├── .github └── workflows │ ├── gradle.yml │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images ├── create_release_and_tag.png ├── draft_release.png ├── github_releases.png ├── github_secrets.png ├── published_on_maven_central.png └── release_settings.png ├── library ├── build.gradle.kts └── src │ ├── androidHostTest │ └── kotlin │ │ └── AndroidFibiTest.kt │ ├── androidMain │ └── kotlin │ │ └── fibiprops.android.kt │ ├── commonMain │ └── kotlin │ │ └── CustomFibi.kt │ ├── commonTest │ └── kotlin │ │ └── FibiTest.kt │ ├── iosMain │ └── kotlin │ │ └── fibiprops.ios.kt │ ├── iosTest │ └── kotlin │ │ └── IosFibiTest.kt │ ├── jvmMain │ └── kotlin │ │ └── fibiprops.jvm.kt │ ├── jvmTest │ └── kotlin │ │ └── JvmFibiTest.kt │ ├── linuxX64Main │ └── kotlin │ │ └── fibiprops.linuxX64.kt │ └── linuxX64Test │ └── kotlin │ └── LinuxFibiTest.kt └── settings.gradle.kts /.github/workflows/gradle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/.github/workflows/gradle.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/create_release_and_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/images/create_release_and_tag.png -------------------------------------------------------------------------------- /images/draft_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/images/draft_release.png -------------------------------------------------------------------------------- /images/github_releases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/images/github_releases.png -------------------------------------------------------------------------------- /images/github_secrets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/images/github_secrets.png -------------------------------------------------------------------------------- /images/published_on_maven_central.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/images/published_on_maven_central.png -------------------------------------------------------------------------------- /images/release_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/images/release_settings.png -------------------------------------------------------------------------------- /library/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/library/build.gradle.kts -------------------------------------------------------------------------------- /library/src/androidHostTest/kotlin/AndroidFibiTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/library/src/androidHostTest/kotlin/AndroidFibiTest.kt -------------------------------------------------------------------------------- /library/src/androidMain/kotlin/fibiprops.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/library/src/androidMain/kotlin/fibiprops.android.kt -------------------------------------------------------------------------------- /library/src/commonMain/kotlin/CustomFibi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/library/src/commonMain/kotlin/CustomFibi.kt -------------------------------------------------------------------------------- /library/src/commonTest/kotlin/FibiTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/library/src/commonTest/kotlin/FibiTest.kt -------------------------------------------------------------------------------- /library/src/iosMain/kotlin/fibiprops.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/library/src/iosMain/kotlin/fibiprops.ios.kt -------------------------------------------------------------------------------- /library/src/iosTest/kotlin/IosFibiTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/library/src/iosTest/kotlin/IosFibiTest.kt -------------------------------------------------------------------------------- /library/src/jvmMain/kotlin/fibiprops.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/library/src/jvmMain/kotlin/fibiprops.jvm.kt -------------------------------------------------------------------------------- /library/src/jvmTest/kotlin/JvmFibiTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/library/src/jvmTest/kotlin/JvmFibiTest.kt -------------------------------------------------------------------------------- /library/src/linuxX64Main/kotlin/fibiprops.linuxX64.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/library/src/linuxX64Main/kotlin/fibiprops.linuxX64.kt -------------------------------------------------------------------------------- /library/src/linuxX64Test/kotlin/LinuxFibiTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/library/src/linuxX64Test/kotlin/LinuxFibiTest.kt -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/multiplatform-library-template/HEAD/settings.gradle.kts --------------------------------------------------------------------------------