Xml文件  |  18行  |  783 B

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="android.tts">
    <application android:label="TTS Service"
        android:icon="@drawable/ic_launcher_text_to_speech">
        <service android:enabled="true"
                 android:name=".TtsService"
                 android:label="TTS Service">
            <intent-filter>
                <action android:name="android.intent.action.START_TTS_SERVICE"/>
                <category android:name="android.intent.category.TTS"/>
            </intent-filter>
        </service>
    </application>
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</manifest>