├── .gitignore ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.adoc ├── LICENSE ├── README.md ├── android-annotations ├── .claude │ └── settings.local.json ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── koin │ │ │ │ └── sample │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MainApplication.kt │ │ │ │ ├── data │ │ │ │ └── User.kt │ │ │ │ ├── di │ │ │ │ └── AppModule.kt │ │ │ │ ├── presentation │ │ │ │ ├── UserPresenter.kt │ │ │ │ └── UserViewModel.kt │ │ │ │ ├── repository │ │ │ │ └── UserRepository.kt │ │ │ │ └── service │ │ │ │ └── UserService.kt │ │ └── res │ │ │ ├── anim │ │ │ └── infinite_blinking_animation.xml │ │ │ ├── drawable │ │ │ ├── ic_edit_black_24dp.xml │ │ │ ├── ic_edit_location_black_24dp.xml │ │ │ ├── ic_location_on_black_24dp.xml │ │ │ └── ic_search_black_24dp.xml │ │ │ ├── font │ │ │ ├── indieflower.ttf │ │ │ └── opensans_regular.ttf │ │ │ ├── layout │ │ │ └── activity_simple.xml │ │ │ ├── menu │ │ │ └── menu_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 │ │ └── test │ │ └── kotlin │ │ └── org │ │ └── koin │ │ └── sample │ │ └── PresenterTest.kt ├── build.gradle.kts ├── gradle.properties ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── android-compose ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── koin │ │ │ │ └── sample │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MainApplication.kt │ │ │ │ ├── data │ │ │ │ └── User.kt │ │ │ │ ├── di │ │ │ │ └── AppModule.kt │ │ │ │ ├── presentation │ │ │ │ ├── UserPresenter.kt │ │ │ │ └── UserViewModel.kt │ │ │ │ ├── repository │ │ │ │ └── UserRepository.kt │ │ │ │ └── service │ │ │ │ └── UserService.kt │ │ └── res │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── kotlin │ │ └── org │ │ └── koin │ │ └── sample │ │ └── CheckModulesTest.kt ├── build.gradle.kts ├── default.jks ├── gradle.properties ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── proguard-rules.pro └── settings.gradle.kts ├── android ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── koin │ │ │ │ └── sample │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MainApplication.kt │ │ │ │ ├── data │ │ │ │ └── User.kt │ │ │ │ ├── di │ │ │ │ └── AppModule.kt │ │ │ │ ├── presentation │ │ │ │ ├── UserPresenter.kt │ │ │ │ └── UserViewModel.kt │ │ │ │ ├── repository │ │ │ │ └── UserRepository.kt │ │ │ │ └── service │ │ │ │ └── UserService.kt │ │ └── res │ │ │ ├── layout │ │ │ └── activity_simple.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── kotlin │ │ └── org │ │ └── koin │ │ └── sample │ │ ├── CheckModulesTest.kt │ │ └── PresenterTest.kt ├── build.gradle.kts ├── default.jks ├── gradle.properties ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── proguard-rules.pro └── settings.gradle.kts ├── compose-annotations ├── .claude │ └── settings.local.json ├── .editorconfig ├── .github │ ├── CLEAN_README.md │ └── workflows │ │ ├── build-android.yml │ │ ├── build-ios.yml │ │ └── template-cleanup.yml ├── .gitignore ├── LICENSE ├── README.md ├── build.gradle.kts ├── composeApp │ ├── build.gradle.kts │ └── src │ │ ├── androidMain │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── jetbrains │ │ │ │ └── kmpapp │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MuseumApp.kt │ │ │ │ └── native │ │ │ │ └── PlatformComponent.android.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ └── strings.xml │ │ ├── commonMain │ │ ├── composeResources │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── kotlin │ │ │ └── com │ │ │ └── jetbrains │ │ │ └── kmpapp │ │ │ ├── App.kt │ │ │ ├── data │ │ │ ├── DataModule.kt │ │ │ ├── MuseumApi.kt │ │ │ ├── MuseumObject.kt │ │ │ ├── MuseumRepository.kt │ │ │ └── MuseumStorage.kt │ │ │ ├── di │ │ │ └── Koin.kt │ │ │ ├── native │ │ │ ├── PlatformComponent.kt │ │ │ └── PlatformComponentModule.kt │ │ │ └── screens │ │ │ ├── EmptyScreenContent.kt │ │ │ ├── ViewModelModule.kt │ │ │ ├── detail │ │ │ ├── DetailScreen.kt │ │ │ └── DetailViewModel.kt │ │ │ └── list │ │ │ ├── ListScreen.kt │ │ │ └── ListViewModel.kt │ │ ├── iosMain │ │ └── kotlin │ │ │ └── com │ │ │ └── jetbrains │ │ │ └── kmpapp │ │ │ └── MainViewController.kt │ │ └── nativeMain │ │ └── kotlin │ │ └── com │ │ └── jetbrains │ │ └── kmpapp │ │ └── native │ │ └── PlatformComponent.native.kt ├── gradle.properties ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images │ └── screenshots.png ├── iosApp │ ├── Configuration │ │ └── Config.xcconfig │ ├── iosApp.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── iosApp │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ └── app-icon-1024.png │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ └── iOSApp.swift ├── list.json └── settings.gradle.kts ├── compose ├── .editorconfig ├── .github │ ├── CLEAN_README.md │ └── workflows │ │ ├── build-android.yml │ │ ├── build-ios.yml │ │ └── template-cleanup.yml ├── .gitignore ├── LICENSE ├── README.md ├── build.gradle.kts ├── composeApp │ ├── build.gradle.kts │ └── src │ │ ├── androidMain │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── jetbrains │ │ │ │ └── kmpapp │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MuseumApp.kt │ │ │ │ └── native │ │ │ │ └── NativeComponent.android.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ └── strings.xml │ │ ├── commonMain │ │ ├── composeResources │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── kotlin │ │ │ └── com │ │ │ └── jetbrains │ │ │ └── kmpapp │ │ │ ├── App.kt │ │ │ ├── data │ │ │ ├── MuseumApi.kt │ │ │ ├── MuseumObject.kt │ │ │ ├── MuseumRepository.kt │ │ │ └── MuseumStorage.kt │ │ │ ├── di │ │ │ └── Koin.kt │ │ │ ├── native │ │ │ └── NativeComponent.kt │ │ │ └── screens │ │ │ ├── EmptyScreenContent.kt │ │ │ ├── detail │ │ │ ├── DetailScreen.kt │ │ │ └── DetailViewModel.kt │ │ │ └── list │ │ │ ├── ListScreen.kt │ │ │ └── ListViewModel.kt │ │ ├── iosMain │ │ └── kotlin │ │ │ └── com │ │ │ └── jetbrains │ │ │ └── kmpapp │ │ │ └── MainViewController.kt │ │ └── nativeMain │ │ └── kotlin │ │ └── com │ │ └── jetbrains │ │ └── kmpapp │ │ └── native │ │ └── NativeComponent.native.kt ├── gradle.properties ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images │ └── screenshots.png ├── iosApp │ ├── Configuration │ │ └── Config.xcconfig │ ├── iosApp.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── iosApp │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ └── app-icon-1024.png │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ └── iOSApp.swift ├── list.json └── settings.gradle.kts ├── docs └── quickstart │ ├── android-annotations.md │ ├── android-compose.md │ ├── android-viewmodel.md │ ├── android.md │ ├── cmp.md │ ├── compose-multiplatform-annotations.md │ ├── junit-test.md │ ├── kmp.md │ ├── kotlin-annotations.md │ ├── kotlin.md │ ├── ktor-annotations.md │ └── ktor.md ├── kotlin-annotations ├── .gitattributes ├── .gitignore ├── app │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── org │ │ │ └── koin │ │ │ └── sample │ │ │ ├── UserApplication.kt │ │ │ ├── data │ │ │ └── User.kt │ │ │ ├── di │ │ │ └── AppModule.kt │ │ │ ├── repository │ │ │ └── UserRepository.kt │ │ │ └── service │ │ │ └── UserService.kt │ │ └── test │ │ └── kotlin │ │ └── org │ │ └── koin │ │ └── sample │ │ └── HelloMockTest.kt ├── build.gradle.kts ├── gradle.properties ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── kotlin ├── .gitattributes ├── .gitignore ├── app │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── org │ │ │ └── koin │ │ │ └── sample │ │ │ ├── UserApplication.kt │ │ │ ├── data │ │ │ └── User.kt │ │ │ ├── di │ │ │ └── AppModule.kt │ │ │ ├── repository │ │ │ └── UserRepository.kt │ │ │ └── service │ │ │ └── UserService.kt │ │ └── test │ │ └── kotlin │ │ └── org │ │ └── koin │ │ └── sample │ │ ├── HelloMockTest.kt │ │ └── ModuleVerificationTest.kt ├── build.gradle.kts ├── gradle.properties ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── ktor-annotations ├── .gitignore ├── app │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── koin │ │ │ │ └── sample │ │ │ │ ├── KoinUserApplication.kt │ │ │ │ ├── data │ │ │ │ └── User.kt │ │ │ │ ├── di │ │ │ │ └── AppModule.kt │ │ │ │ ├── repository │ │ │ │ └── UserRepository.kt │ │ │ │ └── service │ │ │ │ └── UserService.kt │ │ └── resources │ │ │ ├── application.conf │ │ │ └── logback.xml │ │ └── test │ │ └── kotlin │ │ └── org │ │ └── koin │ │ └── sample │ │ └── ApplicationJobRoutesTest.kt ├── gradle.properties ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts └── ktor ├── .gitignore ├── app ├── build.gradle.kts └── src │ ├── main │ ├── kotlin │ │ └── org │ │ │ └── koin │ │ │ └── sample │ │ │ ├── UserApplication.kt │ │ │ ├── data │ │ │ └── User.kt │ │ │ ├── di │ │ │ └── AppModule.kt │ │ │ ├── repository │ │ │ └── UserRepository.kt │ │ │ └── service │ │ │ └── UserService.kt │ └── resources │ │ ├── application.conf │ │ └── logback.xml │ └── test │ └── kotlin │ └── org │ └── koin │ └── sample │ ├── ApplicationJobRoutesTest.kt │ └── CheckModulesTest.kt ├── build.gradle.kts ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/CONTRIBUTING.adoc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/README.md -------------------------------------------------------------------------------- /android-annotations/.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/.claude/settings.local.json -------------------------------------------------------------------------------- /android-annotations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/.gitignore -------------------------------------------------------------------------------- /android-annotations/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android-annotations/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/build.gradle.kts -------------------------------------------------------------------------------- /android-annotations/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android-annotations/app/src/main/kotlin/org/koin/sample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/kotlin/org/koin/sample/MainActivity.kt -------------------------------------------------------------------------------- /android-annotations/app/src/main/kotlin/org/koin/sample/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/kotlin/org/koin/sample/MainApplication.kt -------------------------------------------------------------------------------- /android-annotations/app/src/main/kotlin/org/koin/sample/data/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/kotlin/org/koin/sample/data/User.kt -------------------------------------------------------------------------------- /android-annotations/app/src/main/kotlin/org/koin/sample/di/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/kotlin/org/koin/sample/di/AppModule.kt -------------------------------------------------------------------------------- /android-annotations/app/src/main/kotlin/org/koin/sample/presentation/UserPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/kotlin/org/koin/sample/presentation/UserPresenter.kt -------------------------------------------------------------------------------- /android-annotations/app/src/main/kotlin/org/koin/sample/presentation/UserViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/kotlin/org/koin/sample/presentation/UserViewModel.kt -------------------------------------------------------------------------------- /android-annotations/app/src/main/kotlin/org/koin/sample/repository/UserRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/kotlin/org/koin/sample/repository/UserRepository.kt -------------------------------------------------------------------------------- /android-annotations/app/src/main/kotlin/org/koin/sample/service/UserService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/kotlin/org/koin/sample/service/UserService.kt -------------------------------------------------------------------------------- /android-annotations/app/src/main/res/anim/infinite_blinking_animation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/res/anim/infinite_blinking_animation.xml -------------------------------------------------------------------------------- /android-annotations/app/src/main/res/drawable/ic_edit_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/res/drawable/ic_edit_black_24dp.xml -------------------------------------------------------------------------------- /android-annotations/app/src/main/res/drawable/ic_edit_location_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/res/drawable/ic_edit_location_black_24dp.xml -------------------------------------------------------------------------------- /android-annotations/app/src/main/res/drawable/ic_location_on_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/res/drawable/ic_location_on_black_24dp.xml -------------------------------------------------------------------------------- /android-annotations/app/src/main/res/drawable/ic_search_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/res/drawable/ic_search_black_24dp.xml -------------------------------------------------------------------------------- /android-annotations/app/src/main/res/font/indieflower.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/res/font/indieflower.ttf -------------------------------------------------------------------------------- /android-annotations/app/src/main/res/font/opensans_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/res/font/opensans_regular.ttf -------------------------------------------------------------------------------- /android-annotations/app/src/main/res/layout/activity_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/res/layout/activity_simple.xml -------------------------------------------------------------------------------- /android-annotations/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /android-annotations/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android-annotations/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android-annotations/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android-annotations/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android-annotations/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android-annotations/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /android-annotations/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android-annotations/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /android-annotations/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android-annotations/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android-annotations/app/src/test/kotlin/org/koin/sample/PresenterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/app/src/test/kotlin/org/koin/sample/PresenterTest.kt -------------------------------------------------------------------------------- /android-annotations/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/build.gradle.kts -------------------------------------------------------------------------------- /android-annotations/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/gradle.properties -------------------------------------------------------------------------------- /android-annotations/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/gradle/libs.versions.toml -------------------------------------------------------------------------------- /android-annotations/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android-annotations/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android-annotations/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/gradlew -------------------------------------------------------------------------------- /android-annotations/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/gradlew.bat -------------------------------------------------------------------------------- /android-annotations/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-annotations/settings.gradle.kts -------------------------------------------------------------------------------- /android-compose/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/.gitignore -------------------------------------------------------------------------------- /android-compose/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android-compose/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/app/build.gradle.kts -------------------------------------------------------------------------------- /android-compose/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android-compose/app/src/main/kotlin/org/koin/sample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/app/src/main/kotlin/org/koin/sample/MainActivity.kt -------------------------------------------------------------------------------- /android-compose/app/src/main/kotlin/org/koin/sample/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/app/src/main/kotlin/org/koin/sample/MainApplication.kt -------------------------------------------------------------------------------- /android-compose/app/src/main/kotlin/org/koin/sample/data/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/app/src/main/kotlin/org/koin/sample/data/User.kt -------------------------------------------------------------------------------- /android-compose/app/src/main/kotlin/org/koin/sample/di/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/app/src/main/kotlin/org/koin/sample/di/AppModule.kt -------------------------------------------------------------------------------- /android-compose/app/src/main/kotlin/org/koin/sample/presentation/UserPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/app/src/main/kotlin/org/koin/sample/presentation/UserPresenter.kt -------------------------------------------------------------------------------- /android-compose/app/src/main/kotlin/org/koin/sample/presentation/UserViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/app/src/main/kotlin/org/koin/sample/presentation/UserViewModel.kt -------------------------------------------------------------------------------- /android-compose/app/src/main/kotlin/org/koin/sample/repository/UserRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/app/src/main/kotlin/org/koin/sample/repository/UserRepository.kt -------------------------------------------------------------------------------- /android-compose/app/src/main/kotlin/org/koin/sample/service/UserService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/app/src/main/kotlin/org/koin/sample/service/UserService.kt -------------------------------------------------------------------------------- /android-compose/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android-compose/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /android-compose/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android-compose/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android-compose/app/src/test/kotlin/org/koin/sample/CheckModulesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/app/src/test/kotlin/org/koin/sample/CheckModulesTest.kt -------------------------------------------------------------------------------- /android-compose/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/build.gradle.kts -------------------------------------------------------------------------------- /android-compose/default.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/default.jks -------------------------------------------------------------------------------- /android-compose/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/gradle.properties -------------------------------------------------------------------------------- /android-compose/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/gradle/libs.versions.toml -------------------------------------------------------------------------------- /android-compose/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android-compose/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android-compose/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/gradlew -------------------------------------------------------------------------------- /android-compose/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/gradlew.bat -------------------------------------------------------------------------------- /android-compose/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/proguard-rules.pro -------------------------------------------------------------------------------- /android-compose/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android-compose/settings.gradle.kts -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/app/build.gradle.kts -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/org/koin/sample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/app/src/main/kotlin/org/koin/sample/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/org/koin/sample/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/app/src/main/kotlin/org/koin/sample/MainApplication.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/org/koin/sample/data/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/app/src/main/kotlin/org/koin/sample/data/User.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/org/koin/sample/di/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/app/src/main/kotlin/org/koin/sample/di/AppModule.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/org/koin/sample/presentation/UserPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/app/src/main/kotlin/org/koin/sample/presentation/UserPresenter.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/org/koin/sample/presentation/UserViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/app/src/main/kotlin/org/koin/sample/presentation/UserViewModel.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/org/koin/sample/repository/UserRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/app/src/main/kotlin/org/koin/sample/repository/UserRepository.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/org/koin/sample/service/UserService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/app/src/main/kotlin/org/koin/sample/service/UserService.kt -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/app/src/main/res/layout/activity_simple.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/test/kotlin/org/koin/sample/CheckModulesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/app/src/test/kotlin/org/koin/sample/CheckModulesTest.kt -------------------------------------------------------------------------------- /android/app/src/test/kotlin/org/koin/sample/PresenterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/app/src/test/kotlin/org/koin/sample/PresenterTest.kt -------------------------------------------------------------------------------- /android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/build.gradle.kts -------------------------------------------------------------------------------- /android/default.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/default.jks -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/gradle/libs.versions.toml -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/proguard-rules.pro -------------------------------------------------------------------------------- /android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/android/settings.gradle.kts -------------------------------------------------------------------------------- /compose-annotations/.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/.claude/settings.local.json -------------------------------------------------------------------------------- /compose-annotations/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | ij_kotlin_name_count_to_use_star_import = 2147483647 5 | -------------------------------------------------------------------------------- /compose-annotations/.github/CLEAN_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/.github/CLEAN_README.md -------------------------------------------------------------------------------- /compose-annotations/.github/workflows/build-android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/.github/workflows/build-android.yml -------------------------------------------------------------------------------- /compose-annotations/.github/workflows/build-ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/.github/workflows/build-ios.yml -------------------------------------------------------------------------------- /compose-annotations/.github/workflows/template-cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/.github/workflows/template-cleanup.yml -------------------------------------------------------------------------------- /compose-annotations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/.gitignore -------------------------------------------------------------------------------- /compose-annotations/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/LICENSE -------------------------------------------------------------------------------- /compose-annotations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/README.md -------------------------------------------------------------------------------- /compose-annotations/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/build.gradle.kts -------------------------------------------------------------------------------- /compose-annotations/composeApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/build.gradle.kts -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/androidMain/kotlin/com/jetbrains/kmpapp/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/androidMain/kotlin/com/jetbrains/kmpapp/MainActivity.kt -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/androidMain/kotlin/com/jetbrains/kmpapp/MuseumApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/androidMain/kotlin/com/jetbrains/kmpapp/MuseumApp.kt -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/androidMain/kotlin/com/jetbrains/kmpapp/native/PlatformComponent.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/androidMain/kotlin/com/jetbrains/kmpapp/native/PlatformComponent.android.kt -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/androidMain/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/androidMain/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/androidMain/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/androidMain/res/values/strings.xml -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/App.kt -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/data/DataModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/data/DataModule.kt -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/data/MuseumApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/data/MuseumApi.kt -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/data/MuseumObject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/data/MuseumObject.kt -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/data/MuseumRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/data/MuseumRepository.kt -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/data/MuseumStorage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/data/MuseumStorage.kt -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/di/Koin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/di/Koin.kt -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/native/PlatformComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/native/PlatformComponent.kt -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/native/PlatformComponentModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/native/PlatformComponentModule.kt -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/screens/EmptyScreenContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/screens/EmptyScreenContent.kt -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/screens/ViewModelModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/screens/ViewModelModule.kt -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/screens/detail/DetailScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/screens/detail/DetailScreen.kt -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/screens/detail/DetailViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/screens/detail/DetailViewModel.kt -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/screens/list/ListScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/screens/list/ListScreen.kt -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/screens/list/ListViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/screens/list/ListViewModel.kt -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/iosMain/kotlin/com/jetbrains/kmpapp/MainViewController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/iosMain/kotlin/com/jetbrains/kmpapp/MainViewController.kt -------------------------------------------------------------------------------- /compose-annotations/composeApp/src/nativeMain/kotlin/com/jetbrains/kmpapp/native/PlatformComponent.native.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/composeApp/src/nativeMain/kotlin/com/jetbrains/kmpapp/native/PlatformComponent.native.kt -------------------------------------------------------------------------------- /compose-annotations/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/gradle.properties -------------------------------------------------------------------------------- /compose-annotations/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/gradle/libs.versions.toml -------------------------------------------------------------------------------- /compose-annotations/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /compose-annotations/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /compose-annotations/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/gradlew -------------------------------------------------------------------------------- /compose-annotations/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/gradlew.bat -------------------------------------------------------------------------------- /compose-annotations/images/screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/images/screenshots.png -------------------------------------------------------------------------------- /compose-annotations/iosApp/Configuration/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/iosApp/Configuration/Config.xcconfig -------------------------------------------------------------------------------- /compose-annotations/iosApp/iosApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/iosApp/iosApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /compose-annotations/iosApp/iosApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/iosApp/iosApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /compose-annotations/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /compose-annotations/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /compose-annotations/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png -------------------------------------------------------------------------------- /compose-annotations/iosApp/iosApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/iosApp/iosApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /compose-annotations/iosApp/iosApp/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/iosApp/iosApp/ContentView.swift -------------------------------------------------------------------------------- /compose-annotations/iosApp/iosApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/iosApp/iosApp/Info.plist -------------------------------------------------------------------------------- /compose-annotations/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /compose-annotations/iosApp/iosApp/iOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/iosApp/iosApp/iOSApp.swift -------------------------------------------------------------------------------- /compose-annotations/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/list.json -------------------------------------------------------------------------------- /compose-annotations/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose-annotations/settings.gradle.kts -------------------------------------------------------------------------------- /compose/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | ij_kotlin_name_count_to_use_star_import = 2147483647 5 | -------------------------------------------------------------------------------- /compose/.github/CLEAN_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/.github/CLEAN_README.md -------------------------------------------------------------------------------- /compose/.github/workflows/build-android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/.github/workflows/build-android.yml -------------------------------------------------------------------------------- /compose/.github/workflows/build-ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/.github/workflows/build-ios.yml -------------------------------------------------------------------------------- /compose/.github/workflows/template-cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/.github/workflows/template-cleanup.yml -------------------------------------------------------------------------------- /compose/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/.gitignore -------------------------------------------------------------------------------- /compose/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/LICENSE -------------------------------------------------------------------------------- /compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/README.md -------------------------------------------------------------------------------- /compose/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/build.gradle.kts -------------------------------------------------------------------------------- /compose/composeApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/build.gradle.kts -------------------------------------------------------------------------------- /compose/composeApp/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /compose/composeApp/src/androidMain/kotlin/com/jetbrains/kmpapp/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/androidMain/kotlin/com/jetbrains/kmpapp/MainActivity.kt -------------------------------------------------------------------------------- /compose/composeApp/src/androidMain/kotlin/com/jetbrains/kmpapp/MuseumApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/androidMain/kotlin/com/jetbrains/kmpapp/MuseumApp.kt -------------------------------------------------------------------------------- /compose/composeApp/src/androidMain/kotlin/com/jetbrains/kmpapp/native/NativeComponent.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/androidMain/kotlin/com/jetbrains/kmpapp/native/NativeComponent.android.kt -------------------------------------------------------------------------------- /compose/composeApp/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /compose/composeApp/src/androidMain/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/androidMain/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /compose/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /compose/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /compose/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /compose/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /compose/composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /compose/composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /compose/composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /compose/composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /compose/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /compose/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /compose/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /compose/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /compose/composeApp/src/androidMain/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/androidMain/res/values/strings.xml -------------------------------------------------------------------------------- /compose/composeApp/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/App.kt -------------------------------------------------------------------------------- /compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/data/MuseumApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/data/MuseumApi.kt -------------------------------------------------------------------------------- /compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/data/MuseumObject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/data/MuseumObject.kt -------------------------------------------------------------------------------- /compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/data/MuseumRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/data/MuseumRepository.kt -------------------------------------------------------------------------------- /compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/data/MuseumStorage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/data/MuseumStorage.kt -------------------------------------------------------------------------------- /compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/di/Koin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/di/Koin.kt -------------------------------------------------------------------------------- /compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/native/NativeComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/native/NativeComponent.kt -------------------------------------------------------------------------------- /compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/screens/EmptyScreenContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/screens/EmptyScreenContent.kt -------------------------------------------------------------------------------- /compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/screens/detail/DetailScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/screens/detail/DetailScreen.kt -------------------------------------------------------------------------------- /compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/screens/detail/DetailViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/screens/detail/DetailViewModel.kt -------------------------------------------------------------------------------- /compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/screens/list/ListScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/screens/list/ListScreen.kt -------------------------------------------------------------------------------- /compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/screens/list/ListViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/commonMain/kotlin/com/jetbrains/kmpapp/screens/list/ListViewModel.kt -------------------------------------------------------------------------------- /compose/composeApp/src/iosMain/kotlin/com/jetbrains/kmpapp/MainViewController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/iosMain/kotlin/com/jetbrains/kmpapp/MainViewController.kt -------------------------------------------------------------------------------- /compose/composeApp/src/nativeMain/kotlin/com/jetbrains/kmpapp/native/NativeComponent.native.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/composeApp/src/nativeMain/kotlin/com/jetbrains/kmpapp/native/NativeComponent.native.kt -------------------------------------------------------------------------------- /compose/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/gradle.properties -------------------------------------------------------------------------------- /compose/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/gradle/libs.versions.toml -------------------------------------------------------------------------------- /compose/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /compose/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /compose/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/gradlew -------------------------------------------------------------------------------- /compose/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/gradlew.bat -------------------------------------------------------------------------------- /compose/images/screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/images/screenshots.png -------------------------------------------------------------------------------- /compose/iosApp/Configuration/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/iosApp/Configuration/Config.xcconfig -------------------------------------------------------------------------------- /compose/iosApp/iosApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/iosApp/iosApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /compose/iosApp/iosApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/iosApp/iosApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /compose/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /compose/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /compose/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png -------------------------------------------------------------------------------- /compose/iosApp/iosApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/iosApp/iosApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /compose/iosApp/iosApp/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/iosApp/iosApp/ContentView.swift -------------------------------------------------------------------------------- /compose/iosApp/iosApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/iosApp/iosApp/Info.plist -------------------------------------------------------------------------------- /compose/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /compose/iosApp/iosApp/iOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/iosApp/iosApp/iOSApp.swift -------------------------------------------------------------------------------- /compose/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/list.json -------------------------------------------------------------------------------- /compose/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/compose/settings.gradle.kts -------------------------------------------------------------------------------- /docs/quickstart/android-annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/docs/quickstart/android-annotations.md -------------------------------------------------------------------------------- /docs/quickstart/android-compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/docs/quickstart/android-compose.md -------------------------------------------------------------------------------- /docs/quickstart/android-viewmodel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/docs/quickstart/android-viewmodel.md -------------------------------------------------------------------------------- /docs/quickstart/android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/docs/quickstart/android.md -------------------------------------------------------------------------------- /docs/quickstart/cmp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/docs/quickstart/cmp.md -------------------------------------------------------------------------------- /docs/quickstart/compose-multiplatform-annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/docs/quickstart/compose-multiplatform-annotations.md -------------------------------------------------------------------------------- /docs/quickstart/junit-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/docs/quickstart/junit-test.md -------------------------------------------------------------------------------- /docs/quickstart/kmp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/docs/quickstart/kmp.md -------------------------------------------------------------------------------- /docs/quickstart/kotlin-annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/docs/quickstart/kotlin-annotations.md -------------------------------------------------------------------------------- /docs/quickstart/kotlin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/docs/quickstart/kotlin.md -------------------------------------------------------------------------------- /docs/quickstart/ktor-annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/docs/quickstart/ktor-annotations.md -------------------------------------------------------------------------------- /docs/quickstart/ktor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/docs/quickstart/ktor.md -------------------------------------------------------------------------------- /kotlin-annotations/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin-annotations/.gitattributes -------------------------------------------------------------------------------- /kotlin-annotations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin-annotations/.gitignore -------------------------------------------------------------------------------- /kotlin-annotations/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin-annotations/app/build.gradle.kts -------------------------------------------------------------------------------- /kotlin-annotations/app/src/main/kotlin/org/koin/sample/UserApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin-annotations/app/src/main/kotlin/org/koin/sample/UserApplication.kt -------------------------------------------------------------------------------- /kotlin-annotations/app/src/main/kotlin/org/koin/sample/data/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin-annotations/app/src/main/kotlin/org/koin/sample/data/User.kt -------------------------------------------------------------------------------- /kotlin-annotations/app/src/main/kotlin/org/koin/sample/di/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin-annotations/app/src/main/kotlin/org/koin/sample/di/AppModule.kt -------------------------------------------------------------------------------- /kotlin-annotations/app/src/main/kotlin/org/koin/sample/repository/UserRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin-annotations/app/src/main/kotlin/org/koin/sample/repository/UserRepository.kt -------------------------------------------------------------------------------- /kotlin-annotations/app/src/main/kotlin/org/koin/sample/service/UserService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin-annotations/app/src/main/kotlin/org/koin/sample/service/UserService.kt -------------------------------------------------------------------------------- /kotlin-annotations/app/src/test/kotlin/org/koin/sample/HelloMockTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin-annotations/app/src/test/kotlin/org/koin/sample/HelloMockTest.kt -------------------------------------------------------------------------------- /kotlin-annotations/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin-annotations/build.gradle.kts -------------------------------------------------------------------------------- /kotlin-annotations/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin-annotations/gradle.properties -------------------------------------------------------------------------------- /kotlin-annotations/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin-annotations/gradle/libs.versions.toml -------------------------------------------------------------------------------- /kotlin-annotations/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin-annotations/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /kotlin-annotations/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin-annotations/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /kotlin-annotations/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin-annotations/gradlew -------------------------------------------------------------------------------- /kotlin-annotations/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin-annotations/gradlew.bat -------------------------------------------------------------------------------- /kotlin-annotations/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin-annotations/settings.gradle.kts -------------------------------------------------------------------------------- /kotlin/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin/.gitattributes -------------------------------------------------------------------------------- /kotlin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin/.gitignore -------------------------------------------------------------------------------- /kotlin/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin/app/build.gradle.kts -------------------------------------------------------------------------------- /kotlin/app/src/main/kotlin/org/koin/sample/UserApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin/app/src/main/kotlin/org/koin/sample/UserApplication.kt -------------------------------------------------------------------------------- /kotlin/app/src/main/kotlin/org/koin/sample/data/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin/app/src/main/kotlin/org/koin/sample/data/User.kt -------------------------------------------------------------------------------- /kotlin/app/src/main/kotlin/org/koin/sample/di/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin/app/src/main/kotlin/org/koin/sample/di/AppModule.kt -------------------------------------------------------------------------------- /kotlin/app/src/main/kotlin/org/koin/sample/repository/UserRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin/app/src/main/kotlin/org/koin/sample/repository/UserRepository.kt -------------------------------------------------------------------------------- /kotlin/app/src/main/kotlin/org/koin/sample/service/UserService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin/app/src/main/kotlin/org/koin/sample/service/UserService.kt -------------------------------------------------------------------------------- /kotlin/app/src/test/kotlin/org/koin/sample/HelloMockTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin/app/src/test/kotlin/org/koin/sample/HelloMockTest.kt -------------------------------------------------------------------------------- /kotlin/app/src/test/kotlin/org/koin/sample/ModuleVerificationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin/app/src/test/kotlin/org/koin/sample/ModuleVerificationTest.kt -------------------------------------------------------------------------------- /kotlin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin/build.gradle.kts -------------------------------------------------------------------------------- /kotlin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin/gradle.properties -------------------------------------------------------------------------------- /kotlin/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin/gradle/libs.versions.toml -------------------------------------------------------------------------------- /kotlin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /kotlin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /kotlin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin/gradlew -------------------------------------------------------------------------------- /kotlin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin/gradlew.bat -------------------------------------------------------------------------------- /kotlin/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/kotlin/settings.gradle.kts -------------------------------------------------------------------------------- /ktor-annotations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor-annotations/.gitignore -------------------------------------------------------------------------------- /ktor-annotations/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor-annotations/app/build.gradle.kts -------------------------------------------------------------------------------- /ktor-annotations/app/src/main/kotlin/org/koin/sample/KoinUserApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor-annotations/app/src/main/kotlin/org/koin/sample/KoinUserApplication.kt -------------------------------------------------------------------------------- /ktor-annotations/app/src/main/kotlin/org/koin/sample/data/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor-annotations/app/src/main/kotlin/org/koin/sample/data/User.kt -------------------------------------------------------------------------------- /ktor-annotations/app/src/main/kotlin/org/koin/sample/di/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor-annotations/app/src/main/kotlin/org/koin/sample/di/AppModule.kt -------------------------------------------------------------------------------- /ktor-annotations/app/src/main/kotlin/org/koin/sample/repository/UserRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor-annotations/app/src/main/kotlin/org/koin/sample/repository/UserRepository.kt -------------------------------------------------------------------------------- /ktor-annotations/app/src/main/kotlin/org/koin/sample/service/UserService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor-annotations/app/src/main/kotlin/org/koin/sample/service/UserService.kt -------------------------------------------------------------------------------- /ktor-annotations/app/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor-annotations/app/src/main/resources/application.conf -------------------------------------------------------------------------------- /ktor-annotations/app/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor-annotations/app/src/main/resources/logback.xml -------------------------------------------------------------------------------- /ktor-annotations/app/src/test/kotlin/org/koin/sample/ApplicationJobRoutesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor-annotations/app/src/test/kotlin/org/koin/sample/ApplicationJobRoutesTest.kt -------------------------------------------------------------------------------- /ktor-annotations/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor-annotations/gradle.properties -------------------------------------------------------------------------------- /ktor-annotations/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor-annotations/gradle/libs.versions.toml -------------------------------------------------------------------------------- /ktor-annotations/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor-annotations/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ktor-annotations/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor-annotations/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ktor-annotations/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor-annotations/gradlew -------------------------------------------------------------------------------- /ktor-annotations/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor-annotations/gradlew.bat -------------------------------------------------------------------------------- /ktor-annotations/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor-annotations/settings.gradle.kts -------------------------------------------------------------------------------- /ktor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor/.gitignore -------------------------------------------------------------------------------- /ktor/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor/app/build.gradle.kts -------------------------------------------------------------------------------- /ktor/app/src/main/kotlin/org/koin/sample/UserApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor/app/src/main/kotlin/org/koin/sample/UserApplication.kt -------------------------------------------------------------------------------- /ktor/app/src/main/kotlin/org/koin/sample/data/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor/app/src/main/kotlin/org/koin/sample/data/User.kt -------------------------------------------------------------------------------- /ktor/app/src/main/kotlin/org/koin/sample/di/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor/app/src/main/kotlin/org/koin/sample/di/AppModule.kt -------------------------------------------------------------------------------- /ktor/app/src/main/kotlin/org/koin/sample/repository/UserRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor/app/src/main/kotlin/org/koin/sample/repository/UserRepository.kt -------------------------------------------------------------------------------- /ktor/app/src/main/kotlin/org/koin/sample/service/UserService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor/app/src/main/kotlin/org/koin/sample/service/UserService.kt -------------------------------------------------------------------------------- /ktor/app/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor/app/src/main/resources/application.conf -------------------------------------------------------------------------------- /ktor/app/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor/app/src/main/resources/logback.xml -------------------------------------------------------------------------------- /ktor/app/src/test/kotlin/org/koin/sample/ApplicationJobRoutesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor/app/src/test/kotlin/org/koin/sample/ApplicationJobRoutesTest.kt -------------------------------------------------------------------------------- /ktor/app/src/test/kotlin/org/koin/sample/CheckModulesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor/app/src/test/kotlin/org/koin/sample/CheckModulesTest.kt -------------------------------------------------------------------------------- /ktor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor/build.gradle.kts -------------------------------------------------------------------------------- /ktor/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor/gradle.properties -------------------------------------------------------------------------------- /ktor/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor/gradle/libs.versions.toml -------------------------------------------------------------------------------- /ktor/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ktor/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ktor/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor/gradlew -------------------------------------------------------------------------------- /ktor/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor/gradlew.bat -------------------------------------------------------------------------------- /ktor/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsertKoinIO/koin-getting-started/HEAD/ktor/settings.gradle.kts --------------------------------------------------------------------------------