├── .gitignore ├── androidApp ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── learning │ │ └── app │ │ ├── App.kt │ │ └── MainActivity.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.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ └── values │ ├── ic_launcher_background.xml │ └── strings.xml ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── iosApp ├── Configuration │ └── Config.xcconfig ├── Learning App.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── iosApp.xcscheme ├── iosApp.xcodeproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── 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 ├── settings.gradle.kts └── shared ├── build.gradle.kts └── src ├── androidMain └── kotlin │ └── main.android.kt ├── commonMain ├── kotlin │ ├── App.kt │ ├── data │ │ ├── InternshipApiModel.kt │ │ ├── RepositoryImpl.kt │ │ └── Service.kt │ ├── di │ │ └── Koin.kt │ ├── domain │ │ ├── Repository.kt │ │ ├── ResultPagingSource.kt │ │ └── usecase │ │ │ └── StreamInternshipUseCase.kt │ ├── ui │ │ ├── CoursesScreen.kt │ │ ├── HomeScreen.kt │ │ ├── JobsScreen.kt │ │ ├── PagingListUI.kt │ │ ├── Screen.kt │ │ ├── internships │ │ │ ├── InternshipCard.kt │ │ │ ├── InternshipViewModel.kt │ │ │ └── InternshipsScreen.kt │ │ └── theme │ │ │ └── Color.kt │ └── util │ │ └── ApiClient.kt └── resources │ ├── ic_arrow_up.xml │ ├── ic_calendar.xml │ ├── ic_clock.xml │ ├── ic_play_circle.xml │ └── ic_stipend.xml └── iosMain └── kotlin ├── Koin.ios.kt └── main.ios.kt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/.gitignore -------------------------------------------------------------------------------- /androidApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/build.gradle.kts -------------------------------------------------------------------------------- /androidApp/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /androidApp/src/main/java/com/learning/app/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/java/com/learning/app/App.kt -------------------------------------------------------------------------------- /androidApp/src/main/java/com/learning/app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/java/com/learning/app/MainActivity.kt -------------------------------------------------------------------------------- /androidApp/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/androidApp/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /iosApp/Configuration/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/iosApp/Configuration/Config.xcconfig -------------------------------------------------------------------------------- /iosApp/Learning App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/iosApp/Learning App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iosApp/Learning App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/iosApp/Learning App.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iosApp/Learning App.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/iosApp/Learning App.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /iosApp/Learning App.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/iosApp/Learning App.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /iosApp/Learning App.xcodeproj/xcshareddata/xcschemes/iosApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/iosApp/Learning App.xcodeproj/xcshareddata/xcschemes/iosApp.xcscheme -------------------------------------------------------------------------------- /iosApp/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/iosApp/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/iosApp/iosApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/iosApp/iosApp/ContentView.swift -------------------------------------------------------------------------------- /iosApp/iosApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/iosApp/iosApp/Info.plist -------------------------------------------------------------------------------- /iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/iOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/iosApp/iosApp/iOSApp.swift -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /shared/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/build.gradle.kts -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/main.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/androidMain/kotlin/main.android.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/kotlin/App.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/data/InternshipApiModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/kotlin/data/InternshipApiModel.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/data/RepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/kotlin/data/RepositoryImpl.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/data/Service.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/kotlin/data/Service.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/di/Koin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/kotlin/di/Koin.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/domain/Repository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/kotlin/domain/Repository.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/domain/ResultPagingSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/kotlin/domain/ResultPagingSource.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/domain/usecase/StreamInternshipUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/kotlin/domain/usecase/StreamInternshipUseCase.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/CoursesScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/kotlin/ui/CoursesScreen.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/HomeScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/kotlin/ui/HomeScreen.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/JobsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/kotlin/ui/JobsScreen.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/PagingListUI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/kotlin/ui/PagingListUI.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/Screen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/kotlin/ui/Screen.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/internships/InternshipCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/kotlin/ui/internships/InternshipCard.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/internships/InternshipViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/kotlin/ui/internships/InternshipViewModel.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/internships/InternshipsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/kotlin/ui/internships/InternshipsScreen.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/kotlin/ui/theme/Color.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/util/ApiClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/kotlin/util/ApiClient.kt -------------------------------------------------------------------------------- /shared/src/commonMain/resources/ic_arrow_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/resources/ic_arrow_up.xml -------------------------------------------------------------------------------- /shared/src/commonMain/resources/ic_calendar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/resources/ic_calendar.xml -------------------------------------------------------------------------------- /shared/src/commonMain/resources/ic_clock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/resources/ic_clock.xml -------------------------------------------------------------------------------- /shared/src/commonMain/resources/ic_play_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/resources/ic_play_circle.xml -------------------------------------------------------------------------------- /shared/src/commonMain/resources/ic_stipend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/commonMain/resources/ic_stipend.xml -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/Koin.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/iosMain/kotlin/Koin.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/main.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prashant-123/kmm-ktor-koin/HEAD/shared/src/iosMain/kotlin/main.ios.kt --------------------------------------------------------------------------------