eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.gradle 956B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. buildscript {
  2. repositories {
  3. google()
  4. mavenCentral()
  5. }
  6. dependencies {
  7. classpath 'com.android.tools.build:gradle:7.1.2'
  8. }
  9. }
  10. apply plugin: 'com.android.application'
  11. repositories {
  12. google()
  13. mavenCentral()
  14. }
  15. dependencies {
  16. testImplementation 'junit:junit:4.12'
  17. androidTestImplementation 'org.hamcrest:hamcrest-all:1.3'
  18. }
  19. android {
  20. buildToolsVersion '28.0.3'
  21. compileSdkVersion 26
  22. defaultConfig {
  23. minSdkVersion 14
  24. targetSdkVersion 26
  25. versionCode 20
  26. versionName "1.52-dev"
  27. }
  28. sourceSets {
  29. main {
  30. manifest.srcFile 'AndroidManifest.xml'
  31. java.srcDirs = ['src']
  32. res.srcDirs = ['res']
  33. jniLibs.srcDir 'libs'
  34. }
  35. androidTest.setRoot('eSpeakTests')
  36. androidTest {
  37. java.srcDirs = ['eSpeakTests/src']
  38. }
  39. }
  40. lintOptions {
  41. abortOnError false
  42. }
  43. }