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.

AndroidManifest.xml 545B

1234567891011121314151617
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.reecedunn.espeak.test"
  4. android:versionCode="1"
  5. android:versionName="1.0" >
  6. <instrumentation
  7. android:name="android.test.InstrumentationTestRunner"
  8. android:targetPackage="com.reecedunn.espeak" />
  9. <application
  10. android:icon="@drawable/ic_launcher"
  11. android:label="@string/app_name" >
  12. <uses-library android:name="android.test.runner" />
  13. </application>
  14. </manifest>