├── .github └── workflows │ ├── android.yml │ └── ios.yml ├── .gitignore ├── .junie └── guidelines.md ├── LICENSE ├── README.md ├── composeApp ├── build.gradle.kts └── src │ ├── androidMain │ ├── AndroidManifest.xml │ ├── kotlin │ │ ├── actual.kt │ │ └── dev │ │ │ └── johnoreilly │ │ │ └── gemini │ │ │ ├── AndroidJsonDatabase.kt │ │ │ ├── AndroidTextToSpeech.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.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 │ │ └── drawable │ │ │ ├── assistant.png │ │ │ ├── chat.png │ │ │ ├── copy.png │ │ │ ├── dust.png │ │ │ ├── moon.png │ │ │ ├── rotate_right.xml │ │ │ ├── sound.png │ │ │ └── sun.png │ └── kotlin │ │ ├── App.kt │ │ ├── GeminiApi.kt │ │ ├── core │ │ ├── app_db │ │ │ ├── ChatDbManager.kt │ │ │ └── DataStoreManager.kt │ │ └── models │ │ │ └── ChatMessage.kt │ │ ├── expect.kt │ │ ├── ui │ │ ├── screens │ │ │ └── gemini_ai │ │ │ │ ├── Assistant.kt │ │ │ │ ├── Chat.kt │ │ │ │ ├── GeminiAIScreen.kt │ │ │ │ └── GeminiAiScreenModel.kt │ │ ├── theme │ │ │ └── app_theme.kt │ │ └── widgets.kt │ │ └── utils │ │ ├── AppConstants.kt │ │ └── ConnectionState.kt │ ├── desktopMain │ └── kotlin │ │ ├── DeskTopJsonDB.kt │ │ ├── DesktopTextToSpeech.kt │ │ ├── actual.kt │ │ └── main.kt │ ├── iosMain │ └── kotlin │ │ ├── IosJsonDB.kt │ │ ├── IosTextToSpeech.kt │ │ ├── MainViewController.kt │ │ └── actual.kt │ └── wasmJsMain │ ├── kotlin │ ├── WebJsonDB.kt │ ├── WebTextToSpeech.kt │ ├── actual.kt │ └── main.kt │ └── resources │ └── index.html ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── iosApp ├── Configuration │ └── Config.xcconfig ├── iosApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── joreilly.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── joreilly.xcuserdatad │ │ └── xcschemes │ │ ├── iosApp.xcscheme │ │ └── xcschememanagement.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 ├── settings.gradle.kts └── wearApp ├── build.gradle.kts └── src └── main ├── AndroidManifest.xml ├── kotlin └── dev │ └── johnoreilly │ └── gemini │ ├── common │ └── GeminiApi.kt │ └── wear │ ├── MainActivity.kt │ ├── Screen.kt │ ├── WearApp.kt │ ├── markdown │ └── WearMaterialTypography.kt │ └── prompt │ ├── GeminiPromptScreen.kt │ └── GeminiPromptViewModel.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 /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/.github/workflows/ios.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/.gitignore -------------------------------------------------------------------------------- /.junie/guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/.junie/guidelines.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/README.md -------------------------------------------------------------------------------- /composeApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/build.gradle.kts -------------------------------------------------------------------------------- /composeApp/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/actual.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/androidMain/kotlin/actual.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/dev/johnoreilly/gemini/AndroidJsonDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/androidMain/kotlin/dev/johnoreilly/gemini/AndroidJsonDatabase.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/dev/johnoreilly/gemini/AndroidTextToSpeech.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/androidMain/kotlin/dev/johnoreilly/gemini/AndroidTextToSpeech.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/dev/johnoreilly/gemini/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/androidMain/kotlin/dev/johnoreilly/gemini/MainActivity.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/androidMain/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/androidMain/res/values/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/drawable/assistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/commonMain/composeResources/drawable/assistant.png -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/drawable/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/commonMain/composeResources/drawable/chat.png -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/drawable/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/commonMain/composeResources/drawable/copy.png -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/drawable/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/commonMain/composeResources/drawable/dust.png -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/drawable/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/commonMain/composeResources/drawable/moon.png -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/drawable/rotate_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/commonMain/composeResources/drawable/rotate_right.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/drawable/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/commonMain/composeResources/drawable/sound.png -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/drawable/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/commonMain/composeResources/drawable/sun.png -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/commonMain/kotlin/App.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/GeminiApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/commonMain/kotlin/GeminiApi.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/core/app_db/ChatDbManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/commonMain/kotlin/core/app_db/ChatDbManager.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/core/app_db/DataStoreManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/commonMain/kotlin/core/app_db/DataStoreManager.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/core/models/ChatMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/commonMain/kotlin/core/models/ChatMessage.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/expect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/commonMain/kotlin/expect.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/ui/screens/gemini_ai/Assistant.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/commonMain/kotlin/ui/screens/gemini_ai/Assistant.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/ui/screens/gemini_ai/Chat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/commonMain/kotlin/ui/screens/gemini_ai/Chat.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/ui/screens/gemini_ai/GeminiAIScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/commonMain/kotlin/ui/screens/gemini_ai/GeminiAIScreen.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/ui/screens/gemini_ai/GeminiAiScreenModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/commonMain/kotlin/ui/screens/gemini_ai/GeminiAiScreenModel.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/ui/theme/app_theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/commonMain/kotlin/ui/theme/app_theme.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/ui/widgets.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/commonMain/kotlin/ui/widgets.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/utils/AppConstants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/commonMain/kotlin/utils/AppConstants.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/utils/ConnectionState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/commonMain/kotlin/utils/ConnectionState.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/DeskTopJsonDB.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/desktopMain/kotlin/DeskTopJsonDB.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/DesktopTextToSpeech.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/desktopMain/kotlin/DesktopTextToSpeech.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/actual.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/desktopMain/kotlin/actual.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/desktopMain/kotlin/main.kt -------------------------------------------------------------------------------- /composeApp/src/iosMain/kotlin/IosJsonDB.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/iosMain/kotlin/IosJsonDB.kt -------------------------------------------------------------------------------- /composeApp/src/iosMain/kotlin/IosTextToSpeech.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/iosMain/kotlin/IosTextToSpeech.kt -------------------------------------------------------------------------------- /composeApp/src/iosMain/kotlin/MainViewController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/iosMain/kotlin/MainViewController.kt -------------------------------------------------------------------------------- /composeApp/src/iosMain/kotlin/actual.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/iosMain/kotlin/actual.kt -------------------------------------------------------------------------------- /composeApp/src/wasmJsMain/kotlin/WebJsonDB.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/wasmJsMain/kotlin/WebJsonDB.kt -------------------------------------------------------------------------------- /composeApp/src/wasmJsMain/kotlin/WebTextToSpeech.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/wasmJsMain/kotlin/WebTextToSpeech.kt -------------------------------------------------------------------------------- /composeApp/src/wasmJsMain/kotlin/actual.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/wasmJsMain/kotlin/actual.kt -------------------------------------------------------------------------------- /composeApp/src/wasmJsMain/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/wasmJsMain/kotlin/main.kt -------------------------------------------------------------------------------- /composeApp/src/wasmJsMain/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/composeApp/src/wasmJsMain/resources/index.html -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/gradlew.bat -------------------------------------------------------------------------------- /iosApp/Configuration/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/iosApp/Configuration/Config.xcconfig -------------------------------------------------------------------------------- /iosApp/iosApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/iosApp/iosApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iosApp/iosApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/iosApp/iosApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /iosApp/iosApp.xcodeproj/project.xcworkspace/xcuserdata/joreilly.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/iosApp/iosApp.xcodeproj/project.xcworkspace/xcuserdata/joreilly.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /iosApp/iosApp.xcodeproj/xcuserdata/joreilly.xcuserdatad/xcschemes/iosApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/iosApp/iosApp.xcodeproj/xcuserdata/joreilly.xcuserdatad/xcschemes/iosApp.xcscheme -------------------------------------------------------------------------------- /iosApp/iosApp.xcodeproj/xcuserdata/joreilly.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/iosApp/iosApp.xcodeproj/xcuserdata/joreilly.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/iosApp/iosApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/iosApp/iosApp/ContentView.swift -------------------------------------------------------------------------------- /iosApp/iosApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/iosApp/iosApp/Info.plist -------------------------------------------------------------------------------- /iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/iOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/iosApp/iosApp/iOSApp.swift -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /wearApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/build.gradle.kts -------------------------------------------------------------------------------- /wearApp/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /wearApp/src/main/kotlin/dev/johnoreilly/gemini/common/GeminiApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/kotlin/dev/johnoreilly/gemini/common/GeminiApi.kt -------------------------------------------------------------------------------- /wearApp/src/main/kotlin/dev/johnoreilly/gemini/wear/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/kotlin/dev/johnoreilly/gemini/wear/MainActivity.kt -------------------------------------------------------------------------------- /wearApp/src/main/kotlin/dev/johnoreilly/gemini/wear/Screen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/kotlin/dev/johnoreilly/gemini/wear/Screen.kt -------------------------------------------------------------------------------- /wearApp/src/main/kotlin/dev/johnoreilly/gemini/wear/WearApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/kotlin/dev/johnoreilly/gemini/wear/WearApp.kt -------------------------------------------------------------------------------- /wearApp/src/main/kotlin/dev/johnoreilly/gemini/wear/markdown/WearMaterialTypography.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/kotlin/dev/johnoreilly/gemini/wear/markdown/WearMaterialTypography.kt -------------------------------------------------------------------------------- /wearApp/src/main/kotlin/dev/johnoreilly/gemini/wear/prompt/GeminiPromptScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/kotlin/dev/johnoreilly/gemini/wear/prompt/GeminiPromptScreen.kt -------------------------------------------------------------------------------- /wearApp/src/main/kotlin/dev/johnoreilly/gemini/wear/prompt/GeminiPromptViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/kotlin/dev/johnoreilly/gemini/wear/prompt/GeminiPromptViewModel.kt -------------------------------------------------------------------------------- /wearApp/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /wearApp/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /wearApp/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /wearApp/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /wearApp/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /wearApp/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wearApp/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /wearApp/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wearApp/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wearApp/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wearApp/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wearApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wearApp/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wearApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /wearApp/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joreilly/GeminiKMP/HEAD/wearApp/src/main/res/values/strings.xml --------------------------------------------------------------------------------