Skip to main content

Importing TextToSpeech SDK

To use the TextToSpeech SDK, register the Pleos Maven repository and add the SDK dependencies to your app module.

Registering the Maven Repository

Add the Pleos Maven repository to your project's settings.gradle.kts or settings.gradle file.

settings.gradle.kts
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven("https://nexus-playground.pleos.ai/repository/maven-releases/")
}
}

Adding SDK Dependencies

Add the TextToSpeech SDK dependencies to the Gradle file of your app module.

app/build.gradle.kts
dependencies {
implementation("ai.pleos.playground:TextToSpeech:3.2.1")
}

After completing the Gradle synchronization, declare the TextToSpeech permissions.