blob: 4cef8c0c1a2aa48493229a210ca0ad2d65370e4e [file] [log] [blame]
Venkateshwarlu Domakonda56262fb2013-07-24 19:56:59 +05301<?xml version="1.0" encoding="utf-8"?>
2<!--
3 * Copyright (c) 2009, 2012, 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
30<manifest xmlns:android="http://schemas.android.com/apk/res/android"
31 package="com.caf.fmradio"
32 android:sharedUserId="android.uid.system" >
33 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
34 <uses-permission android:name="android.permission.BLUETOOTH" />
35 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
36 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
37 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
38 <uses-permission android:name="android.permission.WAKE_LOCK" />
39 <uses-permission android:name="android.permission.INTERNET" />
40 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
41 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
42 <uses-permission android:name="android.permission.RECORD_AUDIO" />
43 <uses-permission android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE"/>
44 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
45
46 <application
47 android:icon="@drawable/ic_launcher_fmradio"
48 android:label="@string/app_name"
49 android:name=".FMAdapterApp">
50 <activity android:icon="@drawable/ic_launcher_fmradio"
51 android:name=".FMRadio"
52 android:label="@string/app_name"
53 android:clearTaskOnLaunch="true"
54 android:taskAffinity=""
55 android:launchMode="singleTop"
56 android:excludeFromRecents="true" >
57
58 <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.caf.fmradio.FMRADIO_ACTIVITY" />
65 <category android:name="android.intent.category.DEFAULT" />
66 </intent-filter>
67
68 </activity>
69
70 <receiver android:name="com.caf.fmradio.FMMediaButtonIntentReceiver">
71 <intent-filter>
72 <action android:name="android.intent.action.MEDIA_BUTTON" />
73 </intent-filter>
74 </receiver>
75
76 <activity android:name=".Settings"
77 android:label="@string/settings_menu">
78
79 <intent-filter>
80 <action android:name="android.intent.action.MAIN" />
81 </intent-filter>
82
83 </activity>
84
85 <activity android:icon="@drawable/ic_launcher_fm_tx"
86 android:name=".FMTransmitterActivity"
87 android:label="@string/tx_app_name"
88 android:clearTaskOnLaunch="true"
89 android:taskAffinity=""
90 android:excludeFromRecents="true">
91
92 <intent-filter>
93 <action android:name="android.intent.action.MAIN" />
94 <category android:name="android.intent.category.LAUNCHER" />
95 </intent-filter>
96
97 <intent-filter>
98 <action android:name="com.caf.fmradio.FMTRANSMITTER_ACTIVITY" />
99 <category android:name="android.intent.category.DEFAULT" />
100 </intent-filter>
101
102 </activity>
103
104 <receiver android:name="FMTransmitterConfigReceiver">
105
106 <intent-filter>
107 <action android:name="android.intent.action.BOOT_COMPLETED" />
108 </intent-filter>
109
110 </receiver>
111
112 <service android:name=".FMTransmitterService"
113 android:exported="true" />
114
115 <activity android:name=".FMStats"
116 android:label="@string/test_menu">
117
118 <intent-filter>
119 <action android:name="android.intent.action.MAIN" />
120 </intent-filter>
121
122 </activity>
123
124 <activity android:name=".FmTags"
125 android:label="@string/rt_plus_tags">
126
127 <intent-filter>
128 <action android:name="android.intent.action.MAIN" />
129 </intent-filter>
130
131 </activity>
132
133 <activity android:name=".StationListActivity"
134 android:label="@string/app_label_all_channels"
135 android:configChanges="orientation|keyboardHidden|screenSize|fontScale">
136
137 <intent-filter>
138 <action android:name="android.intent.action.MAIN" />
139 </intent-filter>
140
141 </activity>
142
143 <service android:name=".FMRadioService"
144 android:exported="true" />
145
146 </application>
147
148</manifest>