├── .github └── workflows │ ├── All-publish.yml │ └── KMMBridge-publish.yml ├── .gitignore ├── LICENSE.txt ├── Package.swift ├── README.md ├── allshared ├── allshared.podspec ├── build.gradle.kts └── src │ ├── iosMain │ └── kotlin │ │ └── co.touchlab │ │ └── kmmbridgekickstart │ │ ├── SDKHandle.kt │ │ └── StartSDK.kt │ └── main │ └── AndroidManifest.xml ├── analytics ├── build.gradle.kts └── src │ └── commonMain │ └── kotlin │ └── co │ └── touchlab │ └── kmmbridgekickstart │ ├── Analytics.kt │ ├── AppAnalytics.kt │ ├── BreedAnalytics.kt │ └── HttpClientAnalytics.kt ├── breeds ├── build.gradle.kts └── src │ ├── androidMain │ └── kotlin │ │ └── co │ │ └── touchlab │ │ └── kmmbridgekickstart │ │ ├── AndroidServiceLocator.kt │ │ ├── SDKHandle.kt │ │ └── StartSDK.kt │ ├── commonMain │ ├── kotlin │ │ └── co │ │ │ └── touchlab │ │ │ └── kmmbridgekickstart │ │ │ ├── BaseServiceLocator.kt │ │ │ ├── DatabaseHelper.kt │ │ │ ├── HelloKotlin.kt │ │ │ ├── ServiceLocator.kt │ │ │ ├── ktor │ │ │ ├── DogApi.kt │ │ │ └── DogApiImpl.kt │ │ │ ├── repository │ │ │ └── BreedRepository.kt │ │ │ ├── response │ │ │ └── BreedResult.kt │ │ │ └── sqldelight │ │ │ └── CoroutinesExtensions.kt │ └── sqldelight │ │ └── co │ │ └── touchlab │ │ └── kmmbridgekickstart │ │ └── db │ │ └── Table.sq │ └── iosMain │ └── kotlin │ └── co │ └── touchlab │ └── kmmbridgekickstart │ └── IOSServiceLocator.kt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── part2 └── build.gradle.kts ├── settings.gradle.kts └── testapps ├── android ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── co │ │ └── touchlab │ │ └── kampkit │ │ └── android │ │ ├── MainActivity.kt │ │ ├── MainApp.kt │ │ ├── models │ │ └── BreedViewModel.kt │ │ └── ui │ │ ├── Composables.kt │ │ └── theme │ │ ├── Color.kt │ │ ├── Shapes.kt │ │ ├── Theme.kt │ │ └── Typography.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ ├── ic_favorite_24px.xml │ ├── ic_favorite_border_24px.xml │ └── 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 │ ├── colors.xml │ ├── strings.xml │ └── styles.xml └── ios ├── .gitignore ├── ios.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── kgalligan.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── ios ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── BreedListScreen.swift ├── BreedViewModel.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── ios.entitlements └── iosApp.swift ├── iosTests └── iosTests.swift └── iosUITests ├── iosUITests.swift └── iosUITestsLaunchTests.swift /.github/workflows/All-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/.github/workflows/All-publish.yml -------------------------------------------------------------------------------- /.github/workflows/KMMBridge-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/.github/workflows/KMMBridge-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/README.md -------------------------------------------------------------------------------- /allshared/allshared.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/allshared/allshared.podspec -------------------------------------------------------------------------------- /allshared/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/allshared/build.gradle.kts -------------------------------------------------------------------------------- /allshared/src/iosMain/kotlin/co.touchlab/kmmbridgekickstart/SDKHandle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/allshared/src/iosMain/kotlin/co.touchlab/kmmbridgekickstart/SDKHandle.kt -------------------------------------------------------------------------------- /allshared/src/iosMain/kotlin/co.touchlab/kmmbridgekickstart/StartSDK.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/allshared/src/iosMain/kotlin/co.touchlab/kmmbridgekickstart/StartSDK.kt -------------------------------------------------------------------------------- /allshared/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/allshared/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /analytics/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/analytics/build.gradle.kts -------------------------------------------------------------------------------- /analytics/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/Analytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/analytics/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/Analytics.kt -------------------------------------------------------------------------------- /analytics/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/AppAnalytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/analytics/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/AppAnalytics.kt -------------------------------------------------------------------------------- /analytics/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/BreedAnalytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/analytics/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/BreedAnalytics.kt -------------------------------------------------------------------------------- /analytics/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/HttpClientAnalytics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/analytics/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/HttpClientAnalytics.kt -------------------------------------------------------------------------------- /breeds/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/breeds/build.gradle.kts -------------------------------------------------------------------------------- /breeds/src/androidMain/kotlin/co/touchlab/kmmbridgekickstart/AndroidServiceLocator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/breeds/src/androidMain/kotlin/co/touchlab/kmmbridgekickstart/AndroidServiceLocator.kt -------------------------------------------------------------------------------- /breeds/src/androidMain/kotlin/co/touchlab/kmmbridgekickstart/SDKHandle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/breeds/src/androidMain/kotlin/co/touchlab/kmmbridgekickstart/SDKHandle.kt -------------------------------------------------------------------------------- /breeds/src/androidMain/kotlin/co/touchlab/kmmbridgekickstart/StartSDK.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/breeds/src/androidMain/kotlin/co/touchlab/kmmbridgekickstart/StartSDK.kt -------------------------------------------------------------------------------- /breeds/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/BaseServiceLocator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/breeds/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/BaseServiceLocator.kt -------------------------------------------------------------------------------- /breeds/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/DatabaseHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/breeds/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/DatabaseHelper.kt -------------------------------------------------------------------------------- /breeds/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/HelloKotlin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/breeds/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/HelloKotlin.kt -------------------------------------------------------------------------------- /breeds/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/ServiceLocator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/breeds/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/ServiceLocator.kt -------------------------------------------------------------------------------- /breeds/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/ktor/DogApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/breeds/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/ktor/DogApi.kt -------------------------------------------------------------------------------- /breeds/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/ktor/DogApiImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/breeds/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/ktor/DogApiImpl.kt -------------------------------------------------------------------------------- /breeds/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/repository/BreedRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/breeds/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/repository/BreedRepository.kt -------------------------------------------------------------------------------- /breeds/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/response/BreedResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/breeds/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/response/BreedResult.kt -------------------------------------------------------------------------------- /breeds/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/sqldelight/CoroutinesExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/breeds/src/commonMain/kotlin/co/touchlab/kmmbridgekickstart/sqldelight/CoroutinesExtensions.kt -------------------------------------------------------------------------------- /breeds/src/commonMain/sqldelight/co/touchlab/kmmbridgekickstart/db/Table.sq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/breeds/src/commonMain/sqldelight/co/touchlab/kmmbridgekickstart/db/Table.sq -------------------------------------------------------------------------------- /breeds/src/iosMain/kotlin/co/touchlab/kmmbridgekickstart/IOSServiceLocator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/breeds/src/iosMain/kotlin/co/touchlab/kmmbridgekickstart/IOSServiceLocator.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/gradlew.bat -------------------------------------------------------------------------------- /part2/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/part2/build.gradle.kts -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /testapps/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/.gitignore -------------------------------------------------------------------------------- /testapps/android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/build.gradle.kts -------------------------------------------------------------------------------- /testapps/android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/proguard-rules.pro -------------------------------------------------------------------------------- /testapps/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /testapps/android/src/main/kotlin/co/touchlab/kampkit/android/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/kotlin/co/touchlab/kampkit/android/MainActivity.kt -------------------------------------------------------------------------------- /testapps/android/src/main/kotlin/co/touchlab/kampkit/android/MainApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/kotlin/co/touchlab/kampkit/android/MainApp.kt -------------------------------------------------------------------------------- /testapps/android/src/main/kotlin/co/touchlab/kampkit/android/models/BreedViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/kotlin/co/touchlab/kampkit/android/models/BreedViewModel.kt -------------------------------------------------------------------------------- /testapps/android/src/main/kotlin/co/touchlab/kampkit/android/ui/Composables.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/kotlin/co/touchlab/kampkit/android/ui/Composables.kt -------------------------------------------------------------------------------- /testapps/android/src/main/kotlin/co/touchlab/kampkit/android/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/kotlin/co/touchlab/kampkit/android/ui/theme/Color.kt -------------------------------------------------------------------------------- /testapps/android/src/main/kotlin/co/touchlab/kampkit/android/ui/theme/Shapes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/kotlin/co/touchlab/kampkit/android/ui/theme/Shapes.kt -------------------------------------------------------------------------------- /testapps/android/src/main/kotlin/co/touchlab/kampkit/android/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/kotlin/co/touchlab/kampkit/android/ui/theme/Theme.kt -------------------------------------------------------------------------------- /testapps/android/src/main/kotlin/co/touchlab/kampkit/android/ui/theme/Typography.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/kotlin/co/touchlab/kampkit/android/ui/theme/Typography.kt -------------------------------------------------------------------------------- /testapps/android/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /testapps/android/src/main/res/drawable/ic_favorite_24px.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/res/drawable/ic_favorite_24px.xml -------------------------------------------------------------------------------- /testapps/android/src/main/res/drawable/ic_favorite_border_24px.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/res/drawable/ic_favorite_border_24px.xml -------------------------------------------------------------------------------- /testapps/android/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /testapps/android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /testapps/android/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /testapps/android/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /testapps/android/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testapps/android/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /testapps/android/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testapps/android/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /testapps/android/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testapps/android/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /testapps/android/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testapps/android/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /testapps/android/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /testapps/android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /testapps/android/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /testapps/android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /testapps/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/ios/.gitignore -------------------------------------------------------------------------------- /testapps/ios/ios.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/ios/ios.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /testapps/ios/ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/ios/ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /testapps/ios/ios.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/ios/ios.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /testapps/ios/ios.xcodeproj/xcuserdata/kgalligan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/ios/ios.xcodeproj/xcuserdata/kgalligan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /testapps/ios/ios/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/ios/ios/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /testapps/ios/ios/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/ios/ios/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /testapps/ios/ios/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/ios/ios/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /testapps/ios/ios/BreedListScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/ios/ios/BreedListScreen.swift -------------------------------------------------------------------------------- /testapps/ios/ios/BreedViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/ios/ios/BreedViewModel.swift -------------------------------------------------------------------------------- /testapps/ios/ios/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/ios/ios/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /testapps/ios/ios/ios.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/ios/ios/ios.entitlements -------------------------------------------------------------------------------- /testapps/ios/ios/iosApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/ios/ios/iosApp.swift -------------------------------------------------------------------------------- /testapps/ios/iosTests/iosTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/ios/iosTests/iosTests.swift -------------------------------------------------------------------------------- /testapps/ios/iosUITests/iosUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/ios/iosUITests/iosUITests.swift -------------------------------------------------------------------------------- /testapps/ios/iosUITests/iosUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touchlab/KMMBridgeSKIETemplate/HEAD/testapps/ios/iosUITests/iosUITestsLaunchTests.swift --------------------------------------------------------------------------------