blob: ab102cfdca86957acaad19c4dd19d4d4907f23ab [file] [log] [blame]
Venkateshwarlu Domakonda47abd372013-07-01 14:38:07 +05301<?xml version="1.0" encoding="utf-8"?>
2<!--
3 * Copyright (c) 2009-2013, The Linux Foundation. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * * Neither the name of The Linux Foundation nor
13 * the names of its contributors may be used to endorse or promote
14 * products derived from this software without specific prior written
15 * permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 * NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
21 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
24 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
25 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
27 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28-->
29<manifest xmlns:android="http://schemas.android.com/apk/res/android"
30 package="com.codeaurora.fmradio"
31 android:sharedUserId="android.uid.system" >
32 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
33 <uses-permission android:name="android.permission.BLUETOOTH" />
34 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
35 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
36 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
37 <uses-permission android:name="android.permission.WAKE_LOCK" />
38 <uses-permission android:name="android.permission.INTERNET" />
39 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
40 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
41 <uses-permission android:name="android.permission.RECORD_AUDIO" />
42 <uses-permission android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"/>
43 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
Venkateshwarlu Domakondafa22ae12013-07-27 12:25:16 +053044 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"/>
45 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" />
Venkateshwarlu Domakonda47abd372013-07-01 14:38:07 +053046
47 <application
48 android:icon="@drawable/ic_launcher_fmradio"
49 android:label="@string/app_name"
50 android:name=".FMAdapterApp">
51 <activity android:icon="@drawable/ic_launcher_fmradio"
52 android:name=".FMRadio"
53 android:label="@string/app_name"
54 android:clearTaskOnLaunch="true"
55 android:taskAffinity=""
56 android:launchMode="singleTop"
Ayaz Ahmad45b494b2013-08-27 13:41:07 +053057 android:excludeFromRecents="false" >
Venkateshwarlu Domakonda47abd372013-07-01 14:38:07 +053058 <intent-filter>
59 <action android:name="android.intent.action.MAIN" />
60 <category android:name="android.intent.category.LAUNCHER" />
61 </intent-filter>
62
63 <intent-filter>
64 <action android:name="com.codeaurora.fmradio.FMRADIO_ACTIVITY" />
65 <category android:name="android.intent.category.DEFAULT" />
66 </intent-filter>
67 </activity>
68
69 <receiver android:name="com.codeaurora.fmradio.FMMediaButtonIntentReceiver">
70 <intent-filter>
71 <action android:name="android.intent.action.MEDIA_BUTTON" />
72 </intent-filter>
73 </receiver>
74
75 <activity android:name=".Settings"
76 android:label="@string/settings_menu">
77 <intent-filter>
78 <action android:name="android.intent.action.MAIN" />
79 </intent-filter>
80 </activity>
81
82 <activity android:icon="@drawable/ic_launcher_fm_tx"
83 android:name=".FMTransmitterActivity"
84 android:label="@string/tx_app_name"
85 android:clearTaskOnLaunch="true"
86 android:taskAffinity=""
Ayaz Ahmad45b494b2013-08-27 13:41:07 +053087 android:excludeFromRecents="false">
Venkateshwarlu Domakonda47abd372013-07-01 14:38:07 +053088 <intent-filter>
89 <action android:name="android.intent.action.MAIN" />
90 <category android:name="android.intent.category.LAUNCHER" />
91 </intent-filter>
92
93 <intent-filter>
94 <action android:name="com.codeaurora.fmradio.FMTRANSMITTER_ACTIVITY" />
95 <category android:name="android.intent.category.DEFAULT" />
96 </intent-filter>
97 </activity>
98
99 <receiver android:name="FMTransmitterConfigReceiver">
100 <intent-filter>
101 <action android:name="android.intent.action.BOOT_COMPLETED" />
102 </intent-filter>
103 </receiver>
104
105 <service android:name=".FMTransmitterService" android:exported="true" />
106 <activity android:name=".FMStats"
107 android:label="@string/test_menu">
108 <intent-filter>
109 <action android:name="android.intent.action.MAIN" />
110 </intent-filter>
111 </activity>
112 <activity android:name=".FmTags"
113 android:label="@string/rt_plus_tags">
114 <intent-filter>
115 <action android:name="android.intent.action.MAIN" />
116 </intent-filter>
117 </activity>
118 <service android:name=".FMRadioService" android:exported="true" />
119
120 </application>
121</manifest>