blob: 12a6f3196c7a523f20493b3421c9262d6394548e [file] [log] [blame]
Benson Huanga8b6afc2014-11-20 15:42:26 +08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2014 The Android Open Source Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17
18<manifest xmlns:android="http://schemas.android.com/apk/res/android"
19 package="com.android.fmradio"
Venkateshwarlu Domakondaacaf0ec2015-07-20 20:28:49 +053020 android:sharedUserId="android.uid.system"
Benson Huanga8b6afc2014-11-20 15:42:26 +080021 android:versionCode="2"
22 android:versionName="2.0" >
23
24 <!-- FM uses AudioPatch which is new in sdk 21 -->
25 <uses-sdk
Michael Wcea975b2023-04-05 16:44:31 -040026 android:minSdkVersion="26"
27 android:targetSdkVersion="30"
Alex Klyubin8b82a302015-05-15 09:35:48 -070028 android:usesCleartextTraffic="false" />
Benson Huanga8b6afc2014-11-20 15:42:26 +080029
30 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
31 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
32 <uses-permission android:name="android.permission.ACCESS_FM_RADIO" />
33 <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
Benson Huang2816b932014-12-24 16:25:46 +080034 <uses-permission android:name="android.permission.BLUETOOTH" />
Benson Huanga8b6afc2014-11-20 15:42:26 +080035 <uses-permission android:name="android.permission.INTERNET" />
36 <uses-permission android:name="android.permission.MODIFY_AUDIO_ROUTING" />
37 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
38 <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
39 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
40 <uses-permission android:name="android.permission.RECORD_AUDIO" />
41 <uses-permission android:name="android.permission.WAKE_LOCK" />
42 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
43
44 <application
45 android:hardwareAccelerated="true"
Asher Simonds8be8e012018-02-12 10:27:14 +010046 android:icon="@mipmap/ic_launcher"
Benson Huanga8b6afc2014-11-20 15:42:26 +080047 android:label="@string/app_name" >
48
49 <activity
50 android:name=".FmMainActivity"
51 android:label="@string/app_name"
52 android:launchMode="standard"
Alex Klyubin02804a42015-04-02 13:21:52 -070053 android:theme="@style/AppTheme"
Michael Bestas851fc7e2021-10-11 18:50:18 +030054 android:exported="true"
Alex Klyubin02804a42015-04-02 13:21:52 -070055 android:usesCleartextTraffic="false" >
Benson Huanga8b6afc2014-11-20 15:42:26 +080056 <intent-filter>
57 <action android:name="android.intent.action.MAIN" />
58 <category android:name="android.intent.category.LAUNCHER" />
59 </intent-filter>
60 </activity>
61 <activity
62 android:name=".FmFavoriteActivity"
63 android:configChanges="screenSize"
64 android:label="@string/station_title"
65 android:launchMode="singleTask"
66 android:theme="@style/LightTheme"
67 android:windowSoftInputMode="stateAlwaysHidden" >
68 </activity>
69
70 <service
71 android:name=".FmService"
72 android:exported="false" >
73 <intent-filter>
74 <action android:name="com.android.fmradio.IFmRadioService" />
75 </intent-filter>
76 </service>
77
78 <provider
79 android:name=".FmProvider"
80 android:authorities="com.android.fmradio"
81 android:exported="false" >
82 </provider>
83
84 <activity
85 android:name=".FmRecordActivity"
86 android:label="@string/record_title"
87 android:theme="@style/LightTheme"
88 android:launchMode="singleTask" >
89 </activity>
90 </application>
91
92</manifest>