Home | History | Annotate | Download | only in FmRxApp
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      3       package="com.ti.fmrxapp"
      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.MODIFY_AUDIO_SETTINGS" />
      9     <uses-permission android:name="android.permission.WAKE_LOCK" />
     10 
     11     <application android:icon="@drawable/radio" android:label="@string/app_name">
     12         <uses-library android:name="fmradioif" />
     13         <activity android:name=".FmRxApp"
     14                   android:label="@string/app_name">
     15             <intent-filter>
     16                 <action android:name="android.intent.action.MAIN" />
     17                 <category android:name="android.intent.category.LAUNCHER" />
     18             </intent-filter>
     19                 <intent-filter>
     20                 <action android:name="android.intent.action.FM_PLAYBACK" />
     21                  <category android:name="android.intent.category.DEFAULT" />
     22             </intent-filter>
     23         </activity>
     24         <activity android:name=".FmRxApp"
     25                   android:label="@string/app_rx">
     26              <intent-filter>
     27                 <action android:name="android.intent.action.START_FMRX" />
     28                  <category android:name="android.intent.category.DEFAULT" />
     29             </intent-filter>
     30         </activity>
     31 
     32 
     33               <activity android:name=".FmRxHelp"
     34                   android:label="@string/app_rxhelp">
     35              <intent-filter>
     36                 <action android:name="android.intent.action.START_RXHELP" />
     37                 <category android:name="android.intent.category.DEFAULT" />
     38             </intent-filter>
     39         </activity>
     40 
     41 		<activity android:name=".FmRxFreqInput" android:theme="@android:style/Theme.Dialog"
     42 		    	  android:label="@string/enterFreq_Dialog">
     43     		<intent-filter>
     44              <action android:name="android.intent.action.START_RXFREQ" />
     45              <category android:name="android.intent.category.DEFAULT" />
     46     		</intent-filter>
     47 		</activity>
     48 
     49 		<activity android:name=".FmRxRdsConfig"
     50 		    	  android:label="@string/app_rds">
     51     		<intent-filter>
     52              <action android:name="android.intent.action.RDS_CONFIG" />
     53              <category android:name="android.intent.category.DEFAULT" />
     54     		</intent-filter>
     55 		</activity>
     56     <activity android:name=".FmPresetList"
     57 		    	  android:label="@string/stations">
     58     		<intent-filter>
     59              <action android:name="android.intent.action.PRESET" />
     60              <category android:name="android.intent.category.DEFAULT" />
     61     		</intent-filter>
     62 		</activity>
     63     </application>
     64 </manifest>
     65