1<?xml version="1.0" encoding="utf-8"?> 2 3<manifest xmlns:android="http://schemas.android.com/apk/res/android" 4 package="com.android.cts.tts.helper"> 5<application 6 android:label="TTS CTS Test Helper App"> 7 <service 8 android:name=".TTSHelperService" 9 android:exported="true"> 10 <intent-filter android:priority="100"> 11 <action android:name="android.intent.action.TTS_SERVICE" /> 12 <category android:name="android.intent.category.DEFAULT" /> 13 </intent-filter> 14 </service> 15</application> 16</manifest> 17