1 <?xml version="1.0" encoding="utf-8"?> 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 package="com.ti.fmtxapp" 4 android:versionCode="1" 5 android:versionName="1.0.0"> 6 <uses-permission android:name="ti.permission.FMRX" /> 7 <uses-permission android:name="ti.permission.FMRX_ADMIN" /> 8 <uses-permission android:name="android.permission.WAKE_LOCK" /> 9 10 <application android:icon="@drawable/txradio_ics" android:label="@string/app_name"> 11 <uses-library android:name="fmradioif" /> 12 <activity android:name=".FmTx" 13 android:label="@string/Fm_Tx"> 14 <intent-filter> 15 <action android:name="android.intent.action.MAIN" /> 16 <category android:name="android.intent.category.LAUNCHER" /> 17 </intent-filter> 18 <intent-filter> 19 <action android:name="android.intent.action.FMTXRELAUNCH" /> 20 <category android:name="android.intent.category.DEFAULT" /> 21 </intent-filter> 22 </activity> 23 24 <activity android:name=".FmTxConfig" android:label="@string/rdsConfigApp"> 25 <intent-filter> 26 <action android:name="android.intent.action.RDSPARAM_CONFIG" /> 27 <category android:name="android.intent.category.DEFAULT" /> 28 </intent-filter> 29 </activity> 30 31 <!-- <activity android:name=".FmTxParamConfig" android:label="@string/rdsConfigApp"> 32 <intent-filter> 33 <action android:name="android.intent.action.TXPARAM_CONFIG" /> 34 <category android:name="android.intent.category.DEFAULT" /> 35 </intent-filter> 36 </activity> --> 37 38 39 <activity android:name=".FmTxHelp" android:label="@string/app_tx"> 40 <intent-filter> 41 <action android:name="android.intent.action.START_TXABOUT" /> 42 <category android:name="android.intent.category.DEFAULT" /> 43 </intent-filter> 44 </activity> 45 46 </application> 47 <uses-sdk android:minSdkVersion="2" /> 48 </manifest> 49