├── .gitignore ├── LICENSE.txt ├── README.md ├── androidApp ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── ic_launcher_light-playstore.png │ ├── java │ └── com │ │ └── ebfstudio │ │ └── appgpt │ │ ├── App.kt │ │ └── MainActivity.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ ├── ic_launcher_background.xml │ └── ic_launcher_light_background.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ ├── ic_launcher_light.xml │ ├── ic_launcher_light_round.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ ├── ic_launcher_light.webp │ ├── ic_launcher_light_foreground.webp │ ├── ic_launcher_light_round.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ ├── ic_launcher_light.webp │ ├── ic_launcher_light_foreground.webp │ ├── ic_launcher_light_round.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ ├── ic_launcher_light.webp │ ├── ic_launcher_light_foreground.webp │ ├── ic_launcher_light_round.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ ├── ic_launcher_light.webp │ ├── ic_launcher_light_foreground.webp │ ├── ic_launcher_light_round.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ ├── ic_launcher_light.webp │ ├── ic_launcher_light_foreground.webp │ ├── ic_launcher_light_round.webp │ └── ic_launcher_round.webp │ ├── values-night │ └── themes.xml │ └── values │ ├── ic_launcher_background.xml │ ├── ic_launcher_light_background.xml │ ├── strings.xml │ └── themes.xml ├── cleanup.sh ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── iosApp ├── Configuration │ └── Config.xcconfig ├── Podfile ├── iosApp.xcodeproj │ └── project.pbxproj └── iosApp │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── app-icon-1024.png │ └── Contents.json │ ├── ContentView.swift │ ├── GoogleService-Info.plist │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── iOSApp.swift ├── readme_images ├── android_app_running.png ├── banner.png ├── edit_run_config.png ├── hello_world_ios.png ├── open_project_view.png ├── run_on_android.png ├── target_device.png └── text_field_added.png ├── settings.gradle.kts └── shared ├── build.gradle.kts └── src ├── androidMain ├── AndroidManifest.xml └── kotlin │ ├── analytics │ ├── CrashlyticsAntilog.kt │ └── FirebaseAnalyticsHelper.kt │ ├── data │ ├── billing │ │ └── BillingDataSource.kt │ ├── database │ │ └── DriverFactory.kt │ ├── local │ │ └── SettingsFactory.kt │ └── repository │ │ └── BillingRepository.android.kt │ ├── di │ └── AppModule.android.kt │ ├── expect │ ├── isDebug.kt │ ├── platform.kt │ └── shareText.kt │ ├── main.android.kt │ ├── ui │ ├── components │ │ ├── Ads.android.kt │ │ ├── Image.android.kt │ │ ├── InAppReview.android.kt │ │ └── Subscription.android.kt │ └── theme │ │ ├── outfitFontFamily.kt │ │ └── platformColorScheme.kt │ └── util │ ├── Graphic.android.kt │ └── Haptic.android.kt ├── commonMain ├── kotlin │ ├── App.kt │ ├── AppScreenModel.kt │ ├── analytics │ │ ├── AnalyticsEvent.kt │ │ ├── AnalyticsExtensions.kt │ │ ├── AnalyticsHelper.kt │ │ ├── NoOpAnalyticsHelper.kt │ │ ├── StubAnalyticsHelper.kt │ │ └── UiHelpers.kt │ ├── data │ │ ├── database │ │ │ └── AppDatabase.kt │ │ ├── local │ │ │ ├── PreferenceLocalDataSource.kt │ │ │ └── SettingsFactory.kt │ │ └── repository │ │ │ ├── BillingRepository.kt │ │ │ ├── ChatMessageRepository.kt │ │ │ ├── ChatRepository.kt │ │ │ ├── CoinRepository.kt │ │ │ ├── PreferenceRepository.kt │ │ │ └── util │ │ │ └── SyncUtilities.kt │ ├── di │ │ ├── AppModule.kt │ │ └── DiHelper.kt │ ├── expect │ │ ├── isDebug.kt │ │ ├── platform.kt │ │ └── shareText.kt │ ├── extendedspans │ │ ├── ExtendedSpanPainter.kt │ │ ├── ExtendedSpans.kt │ │ ├── RoundedCornerSpanPainter.kt │ │ ├── SquigglyUnderlineSpanPainter.kt │ │ └── internal │ │ │ ├── colorSerializers.kt │ │ │ └── lists.kt │ ├── markdown │ │ ├── compose │ │ │ ├── ComposeLocal.kt │ │ │ ├── Markdown.kt │ │ │ └── elements │ │ │ │ ├── MarkdownBlockQuote.kt │ │ │ │ ├── MarkdownCode.kt │ │ │ │ ├── MarkdownHeader.kt │ │ │ │ ├── MarkdownImage.kt │ │ │ │ ├── MarkdownList.kt │ │ │ │ ├── MarkdownParagraph.kt │ │ │ │ └── MarkdownText.kt │ │ ├── model │ │ │ ├── BulletHandler.kt │ │ │ ├── MarkdownColors.kt │ │ │ ├── MarkdownPadding.kt │ │ │ ├── MarkdownTypography.kt │ │ │ └── ReferenceLinkHandler.kt │ │ └── utils │ │ │ ├── AnnotatedStringKtx.kt │ │ │ └── Extensions.kt │ ├── model │ │ ├── AppPlatform.kt │ │ ├── AppProduct.kt │ │ ├── AppPurchase.kt │ │ ├── Chat.kt │ │ └── ChatMessage.kt │ ├── ui │ │ ├── components │ │ │ ├── Ads.kt │ │ │ ├── AnimatedCounter.kt │ │ │ ├── AppImage.kt │ │ │ ├── Image.kt │ │ │ ├── InAppReview.kt │ │ │ ├── Subscription.kt │ │ │ └── TypewriterText.kt │ │ ├── images │ │ │ └── AppImages.kt │ │ ├── screens │ │ │ ├── bank │ │ │ │ ├── BankScreen.kt │ │ │ │ └── BankViewModel.kt │ │ │ ├── chat │ │ │ │ ├── ChatScreen.kt │ │ │ │ ├── ChatScreenModel.kt │ │ │ │ └── components │ │ │ │ │ └── Message.kt │ │ │ └── welcome │ │ │ │ ├── WelcomeScreen.kt │ │ │ │ └── WelcomeScreenModel.kt │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── Shapes.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ └── util │ │ ├── Graphic.kt │ │ └── Haptic.kt ├── libres │ └── strings │ │ ├── strings_de.xml │ │ ├── strings_en.xml │ │ ├── strings_es.xml │ │ ├── strings_fr.xml │ │ ├── strings_pl.xml │ │ └── strings_pt.xml ├── resources │ ├── drawable │ │ ├── ic_launcher_light_playstore.png │ │ ├── ic_launcher_playstore.png │ │ ├── ic_verified.xml │ │ ├── pattern.jpg │ │ └── pattern3.jpg │ └── font │ │ ├── outfit_black.ttf │ │ ├── outfit_bold.ttf │ │ ├── outfit_extrabold.ttf │ │ ├── outfit_extralight.ttf │ │ ├── outfit_light.ttf │ │ ├── outfit_medium.ttf │ │ ├── outfit_regular.ttf │ │ ├── outfit_semibold.ttf │ │ └── outfit_thin.ttf └── sqldelight │ ├── com │ └── ebfstudio │ │ └── appgpt │ │ └── common │ │ ├── ChatEntity.sq │ │ └── ChatMessageEntity.sq │ ├── databases │ ├── 1.db │ └── 2.db │ └── migrations │ └── 1.sqm └── iosMain └── kotlin ├── NapierProxy.kt ├── analytics └── FirebaseAnalyticsHelper.kt ├── data ├── database │ └── DatabaseFactory.kt ├── local │ └── SettingsFactory.kt └── repository │ └── BillingRepository.ios.kt ├── di └── AppModule.ios.kt ├── expect ├── isDebug.kt ├── platform.kt └── shareText.kt ├── main.ios.kt ├── ui ├── components │ ├── Ads.ios.kt │ ├── Image.ios.kt │ ├── InAppReview.ios.kt │ └── Subscription.ios.kt └── theme │ ├── Type.kt │ └── platformColorScheme.kt └── util ├── Graphic.ios.kt └── Haptic.ios.kt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/README.md -------------------------------------------------------------------------------- /androidApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/build.gradle.kts -------------------------------------------------------------------------------- /androidApp/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/proguard-rules.pro -------------------------------------------------------------------------------- /androidApp/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /androidApp/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /androidApp/src/main/ic_launcher_light-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/ic_launcher_light-playstore.png -------------------------------------------------------------------------------- /androidApp/src/main/java/com/ebfstudio/appgpt/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/java/com/ebfstudio/appgpt/App.kt -------------------------------------------------------------------------------- /androidApp/src/main/java/com/ebfstudio/appgpt/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/java/com/ebfstudio/appgpt/MainActivity.kt -------------------------------------------------------------------------------- /androidApp/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/drawable/ic_launcher_light_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/drawable/ic_launcher_light_background.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher_light.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher_light_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher_light_round.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/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/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-hdpi/ic_launcher_light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-hdpi/ic_launcher_light.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-hdpi/ic_launcher_light_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-hdpi/ic_launcher_light_foreground.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-hdpi/ic_launcher_light_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-hdpi/ic_launcher_light_round.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-mdpi/ic_launcher_light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-mdpi/ic_launcher_light.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-mdpi/ic_launcher_light_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-mdpi/ic_launcher_light_foreground.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-mdpi/ic_launcher_light_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-mdpi/ic_launcher_light_round.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xhdpi/ic_launcher_light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-xhdpi/ic_launcher_light.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xhdpi/ic_launcher_light_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-xhdpi/ic_launcher_light_foreground.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xhdpi/ic_launcher_light_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-xhdpi/ic_launcher_light_round.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_light.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_light_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_light_foreground.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_light_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_light_round.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_light.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_light_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_light_foreground.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_light_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_light_round.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /androidApp/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/values/ic_launcher_light_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/values/ic_launcher_light_background.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/androidApp/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/cleanup.sh -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/gradlew.bat -------------------------------------------------------------------------------- /iosApp/Configuration/Config.xcconfig: -------------------------------------------------------------------------------- 1 | TEAM_ID=P5Q7S5CKC9 2 | BUNDLE_ID=com.ebfstudio.appgpt2 3 | APP_NAME=ComposeAI 4 | -------------------------------------------------------------------------------- /iosApp/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/iosApp/Podfile -------------------------------------------------------------------------------- /iosApp/iosApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/iosApp/iosApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/iosApp/iosApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/iosApp/iosApp/ContentView.swift -------------------------------------------------------------------------------- /iosApp/iosApp/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/iosApp/iosApp/GoogleService-Info.plist -------------------------------------------------------------------------------- /iosApp/iosApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/iosApp/iosApp/Info.plist -------------------------------------------------------------------------------- /iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/iOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/iosApp/iosApp/iOSApp.swift -------------------------------------------------------------------------------- /readme_images/android_app_running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/readme_images/android_app_running.png -------------------------------------------------------------------------------- /readme_images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/readme_images/banner.png -------------------------------------------------------------------------------- /readme_images/edit_run_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/readme_images/edit_run_config.png -------------------------------------------------------------------------------- /readme_images/hello_world_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/readme_images/hello_world_ios.png -------------------------------------------------------------------------------- /readme_images/open_project_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/readme_images/open_project_view.png -------------------------------------------------------------------------------- /readme_images/run_on_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/readme_images/run_on_android.png -------------------------------------------------------------------------------- /readme_images/target_device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/readme_images/target_device.png -------------------------------------------------------------------------------- /readme_images/text_field_added.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/readme_images/text_field_added.png -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /shared/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/build.gradle.kts -------------------------------------------------------------------------------- /shared/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/analytics/CrashlyticsAntilog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/androidMain/kotlin/analytics/CrashlyticsAntilog.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/analytics/FirebaseAnalyticsHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/androidMain/kotlin/analytics/FirebaseAnalyticsHelper.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/data/billing/BillingDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/androidMain/kotlin/data/billing/BillingDataSource.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/data/database/DriverFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/androidMain/kotlin/data/database/DriverFactory.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/data/local/SettingsFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/androidMain/kotlin/data/local/SettingsFactory.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/data/repository/BillingRepository.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/androidMain/kotlin/data/repository/BillingRepository.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/di/AppModule.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/androidMain/kotlin/di/AppModule.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/expect/isDebug.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/androidMain/kotlin/expect/isDebug.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/expect/platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/androidMain/kotlin/expect/platform.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/expect/shareText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/androidMain/kotlin/expect/shareText.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/main.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/androidMain/kotlin/main.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/ui/components/Ads.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/androidMain/kotlin/ui/components/Ads.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/ui/components/Image.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/androidMain/kotlin/ui/components/Image.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/ui/components/InAppReview.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/androidMain/kotlin/ui/components/InAppReview.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/ui/components/Subscription.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/androidMain/kotlin/ui/components/Subscription.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/ui/theme/outfitFontFamily.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/androidMain/kotlin/ui/theme/outfitFontFamily.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/ui/theme/platformColorScheme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/androidMain/kotlin/ui/theme/platformColorScheme.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/util/Graphic.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/androidMain/kotlin/util/Graphic.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/util/Haptic.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/androidMain/kotlin/util/Haptic.android.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/App.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/AppScreenModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/AppScreenModel.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/analytics/AnalyticsEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/analytics/AnalyticsEvent.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/analytics/AnalyticsExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/analytics/AnalyticsExtensions.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/analytics/AnalyticsHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/analytics/AnalyticsHelper.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/analytics/NoOpAnalyticsHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/analytics/NoOpAnalyticsHelper.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/analytics/StubAnalyticsHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/analytics/StubAnalyticsHelper.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/analytics/UiHelpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/analytics/UiHelpers.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/data/database/AppDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/data/database/AppDatabase.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/data/local/PreferenceLocalDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/data/local/PreferenceLocalDataSource.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/data/local/SettingsFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/data/local/SettingsFactory.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/data/repository/BillingRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/data/repository/BillingRepository.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/data/repository/ChatMessageRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/data/repository/ChatMessageRepository.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/data/repository/ChatRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/data/repository/ChatRepository.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/data/repository/CoinRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/data/repository/CoinRepository.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/data/repository/PreferenceRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/data/repository/PreferenceRepository.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/data/repository/util/SyncUtilities.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/data/repository/util/SyncUtilities.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/di/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/di/AppModule.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/di/DiHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/di/DiHelper.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/expect/isDebug.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/expect/isDebug.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/expect/platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/expect/platform.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/expect/shareText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/expect/shareText.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/extendedspans/ExtendedSpanPainter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/extendedspans/ExtendedSpanPainter.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/extendedspans/ExtendedSpans.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/extendedspans/ExtendedSpans.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/extendedspans/RoundedCornerSpanPainter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/extendedspans/RoundedCornerSpanPainter.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/extendedspans/SquigglyUnderlineSpanPainter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/extendedspans/SquigglyUnderlineSpanPainter.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/extendedspans/internal/colorSerializers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/extendedspans/internal/colorSerializers.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/extendedspans/internal/lists.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/extendedspans/internal/lists.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/markdown/compose/ComposeLocal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/markdown/compose/ComposeLocal.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/markdown/compose/Markdown.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/markdown/compose/Markdown.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/markdown/compose/elements/MarkdownBlockQuote.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/markdown/compose/elements/MarkdownBlockQuote.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/markdown/compose/elements/MarkdownCode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/markdown/compose/elements/MarkdownCode.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/markdown/compose/elements/MarkdownHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/markdown/compose/elements/MarkdownHeader.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/markdown/compose/elements/MarkdownImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/markdown/compose/elements/MarkdownImage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/markdown/compose/elements/MarkdownList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/markdown/compose/elements/MarkdownList.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/markdown/compose/elements/MarkdownParagraph.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/markdown/compose/elements/MarkdownParagraph.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/markdown/compose/elements/MarkdownText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/markdown/compose/elements/MarkdownText.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/markdown/model/BulletHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/markdown/model/BulletHandler.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/markdown/model/MarkdownColors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/markdown/model/MarkdownColors.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/markdown/model/MarkdownPadding.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/markdown/model/MarkdownPadding.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/markdown/model/MarkdownTypography.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/markdown/model/MarkdownTypography.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/markdown/model/ReferenceLinkHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/markdown/model/ReferenceLinkHandler.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/markdown/utils/AnnotatedStringKtx.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/markdown/utils/AnnotatedStringKtx.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/markdown/utils/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/markdown/utils/Extensions.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/model/AppPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/model/AppPlatform.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/model/AppProduct.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/model/AppProduct.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/model/AppPurchase.kt: -------------------------------------------------------------------------------- 1 | package model 2 | 3 | data class AppPurchase( 4 | val products: List, 5 | ) 6 | -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/model/Chat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/model/Chat.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/model/ChatMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/model/ChatMessage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/components/Ads.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/ui/components/Ads.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/components/AnimatedCounter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/ui/components/AnimatedCounter.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/components/AppImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/ui/components/AppImage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/components/Image.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/ui/components/Image.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/components/InAppReview.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/ui/components/InAppReview.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/components/Subscription.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/ui/components/Subscription.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/components/TypewriterText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/ui/components/TypewriterText.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/images/AppImages.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/ui/images/AppImages.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/screens/bank/BankScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/ui/screens/bank/BankScreen.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/screens/bank/BankViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/ui/screens/bank/BankViewModel.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/screens/chat/ChatScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/ui/screens/chat/ChatScreen.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/screens/chat/ChatScreenModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/ui/screens/chat/ChatScreenModel.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/screens/chat/components/Message.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/ui/screens/chat/components/Message.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/screens/welcome/WelcomeScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/ui/screens/welcome/WelcomeScreen.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/screens/welcome/WelcomeScreenModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/ui/screens/welcome/WelcomeScreenModel.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/ui/theme/Color.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/theme/Shapes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/ui/theme/Shapes.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/ui/theme/Theme.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/ui/theme/Type.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/util/Graphic.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/util/Graphic.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/util/Haptic.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/kotlin/util/Haptic.kt -------------------------------------------------------------------------------- /shared/src/commonMain/libres/strings/strings_de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/libres/strings/strings_de.xml -------------------------------------------------------------------------------- /shared/src/commonMain/libres/strings/strings_en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/libres/strings/strings_en.xml -------------------------------------------------------------------------------- /shared/src/commonMain/libres/strings/strings_es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/libres/strings/strings_es.xml -------------------------------------------------------------------------------- /shared/src/commonMain/libres/strings/strings_fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/libres/strings/strings_fr.xml -------------------------------------------------------------------------------- /shared/src/commonMain/libres/strings/strings_pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/libres/strings/strings_pl.xml -------------------------------------------------------------------------------- /shared/src/commonMain/libres/strings/strings_pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/libres/strings/strings_pt.xml -------------------------------------------------------------------------------- /shared/src/commonMain/resources/drawable/ic_launcher_light_playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/resources/drawable/ic_launcher_light_playstore.png -------------------------------------------------------------------------------- /shared/src/commonMain/resources/drawable/ic_launcher_playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/resources/drawable/ic_launcher_playstore.png -------------------------------------------------------------------------------- /shared/src/commonMain/resources/drawable/ic_verified.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/resources/drawable/ic_verified.xml -------------------------------------------------------------------------------- /shared/src/commonMain/resources/drawable/pattern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/resources/drawable/pattern.jpg -------------------------------------------------------------------------------- /shared/src/commonMain/resources/drawable/pattern3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/resources/drawable/pattern3.jpg -------------------------------------------------------------------------------- /shared/src/commonMain/resources/font/outfit_black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/resources/font/outfit_black.ttf -------------------------------------------------------------------------------- /shared/src/commonMain/resources/font/outfit_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/resources/font/outfit_bold.ttf -------------------------------------------------------------------------------- /shared/src/commonMain/resources/font/outfit_extrabold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/resources/font/outfit_extrabold.ttf -------------------------------------------------------------------------------- /shared/src/commonMain/resources/font/outfit_extralight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/resources/font/outfit_extralight.ttf -------------------------------------------------------------------------------- /shared/src/commonMain/resources/font/outfit_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/resources/font/outfit_light.ttf -------------------------------------------------------------------------------- /shared/src/commonMain/resources/font/outfit_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/resources/font/outfit_medium.ttf -------------------------------------------------------------------------------- /shared/src/commonMain/resources/font/outfit_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/resources/font/outfit_regular.ttf -------------------------------------------------------------------------------- /shared/src/commonMain/resources/font/outfit_semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/resources/font/outfit_semibold.ttf -------------------------------------------------------------------------------- /shared/src/commonMain/resources/font/outfit_thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/resources/font/outfit_thin.ttf -------------------------------------------------------------------------------- /shared/src/commonMain/sqldelight/com/ebfstudio/appgpt/common/ChatEntity.sq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/sqldelight/com/ebfstudio/appgpt/common/ChatEntity.sq -------------------------------------------------------------------------------- /shared/src/commonMain/sqldelight/com/ebfstudio/appgpt/common/ChatMessageEntity.sq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/sqldelight/com/ebfstudio/appgpt/common/ChatMessageEntity.sq -------------------------------------------------------------------------------- /shared/src/commonMain/sqldelight/databases/1.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/sqldelight/databases/1.db -------------------------------------------------------------------------------- /shared/src/commonMain/sqldelight/databases/2.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/sqldelight/databases/2.db -------------------------------------------------------------------------------- /shared/src/commonMain/sqldelight/migrations/1.sqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/commonMain/sqldelight/migrations/1.sqm -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/NapierProxy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/iosMain/kotlin/NapierProxy.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/analytics/FirebaseAnalyticsHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/iosMain/kotlin/analytics/FirebaseAnalyticsHelper.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/data/database/DatabaseFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/iosMain/kotlin/data/database/DatabaseFactory.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/data/local/SettingsFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/iosMain/kotlin/data/local/SettingsFactory.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/data/repository/BillingRepository.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/iosMain/kotlin/data/repository/BillingRepository.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/di/AppModule.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/iosMain/kotlin/di/AppModule.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/expect/isDebug.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/iosMain/kotlin/expect/isDebug.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/expect/platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/iosMain/kotlin/expect/platform.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/expect/shareText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/iosMain/kotlin/expect/shareText.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/main.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/iosMain/kotlin/main.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/ui/components/Ads.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/iosMain/kotlin/ui/components/Ads.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/ui/components/Image.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/iosMain/kotlin/ui/components/Image.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/ui/components/InAppReview.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/iosMain/kotlin/ui/components/InAppReview.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/ui/components/Subscription.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/iosMain/kotlin/ui/components/Subscription.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/iosMain/kotlin/ui/theme/Type.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/ui/theme/platformColorScheme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/iosMain/kotlin/ui/theme/platformColorScheme.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/util/Graphic.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/iosMain/kotlin/util/Graphic.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/util/Haptic.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshajDivekar/AIWithKMPDemo/HEAD/shared/src/iosMain/kotlin/util/Haptic.ios.kt --------------------------------------------------------------------------------