├── .gitignore ├── README.md ├── composeApp ├── build.gradle.kts └── src │ ├── androidMain │ ├── AndroidManifest.xml │ ├── kotlin │ │ └── com │ │ │ └── example │ │ │ └── texttospeech │ │ │ ├── MainActivity.kt │ │ │ └── TextToSpeechManager.android.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ └── strings.xml │ ├── commonMain │ ├── composeResources │ │ └── drawable │ │ │ └── compose-multiplatform.xml │ └── kotlin │ │ └── com │ │ └── example │ │ └── texttospeech │ │ ├── App.kt │ │ ├── HighlightedText.kt │ │ ├── TTSProvider.kt │ │ ├── TTSScreen.kt │ │ ├── TTSViewModel.kt │ │ └── TextToSpeechManager.kt │ ├── commonTest │ └── kotlin │ │ └── com │ │ └── example │ │ └── texttospeech │ │ └── ComposeAppCommonTest.kt │ └── iosMain │ └── kotlin │ └── com │ └── example │ └── texttospeech │ ├── MainViewController.kt │ └── TextToSpeechManager.ios.kt ├── 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 │ │ └── contents.xcworkspacedata └── iosApp │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── app-icon-1024.png │ └── Contents.json │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── TTSManagerIOS.swift │ └── iOSApp.swift ├── screenshot └── tts_android_ios.png └── settings.gradle.kts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/README.md -------------------------------------------------------------------------------- /composeApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/build.gradle.kts -------------------------------------------------------------------------------- /composeApp/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/com/example/texttospeech/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/androidMain/kotlin/com/example/texttospeech/MainActivity.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/com/example/texttospeech/TextToSpeechManager.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/androidMain/kotlin/com/example/texttospeech/TextToSpeechManager.android.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/androidMain/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/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/Coding-Meet/TextToSpeech-CMP/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/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/androidMain/res/values/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/drawable/compose-multiplatform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/commonMain/composeResources/drawable/compose-multiplatform.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/com/example/texttospeech/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/commonMain/kotlin/com/example/texttospeech/App.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/com/example/texttospeech/HighlightedText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/commonMain/kotlin/com/example/texttospeech/HighlightedText.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/com/example/texttospeech/TTSProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/commonMain/kotlin/com/example/texttospeech/TTSProvider.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/com/example/texttospeech/TTSScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/commonMain/kotlin/com/example/texttospeech/TTSScreen.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/com/example/texttospeech/TTSViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/commonMain/kotlin/com/example/texttospeech/TTSViewModel.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/com/example/texttospeech/TextToSpeechManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/commonMain/kotlin/com/example/texttospeech/TextToSpeechManager.kt -------------------------------------------------------------------------------- /composeApp/src/commonTest/kotlin/com/example/texttospeech/ComposeAppCommonTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/commonTest/kotlin/com/example/texttospeech/ComposeAppCommonTest.kt -------------------------------------------------------------------------------- /composeApp/src/iosMain/kotlin/com/example/texttospeech/MainViewController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/iosMain/kotlin/com/example/texttospeech/MainViewController.kt -------------------------------------------------------------------------------- /composeApp/src/iosMain/kotlin/com/example/texttospeech/TextToSpeechManager.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/composeApp/src/iosMain/kotlin/com/example/texttospeech/TextToSpeechManager.ios.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/gradlew.bat -------------------------------------------------------------------------------- /iosApp/Configuration/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/iosApp/Configuration/Config.xcconfig -------------------------------------------------------------------------------- /iosApp/iosApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/iosApp/iosApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iosApp/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/iosApp/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/iosApp/iosApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/iosApp/iosApp/ContentView.swift -------------------------------------------------------------------------------- /iosApp/iosApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/iosApp/iosApp/Info.plist -------------------------------------------------------------------------------- /iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/TTSManagerIOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/iosApp/iosApp/TTSManagerIOS.swift -------------------------------------------------------------------------------- /iosApp/iosApp/iOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/iosApp/iosApp/iOSApp.swift -------------------------------------------------------------------------------- /screenshot/tts_android_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/screenshot/tts_android_ios.png -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coding-Meet/TextToSpeech-CMP/HEAD/settings.gradle.kts --------------------------------------------------------------------------------