blob: b161ee7524e4d7e9b80e2fb6657875306f7a1c28 [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" />
nift425b8ce22023-05-11 23:21:40 +020043 <uses-permission android:name="com.android.fmradio.recordings.permission.PLAY_RECORDING" />
Benson Huanga8b6afc2014-11-20 15:42:26 +080044
45 <application
46 android:hardwareAccelerated="true"
Asher Simonds8be8e012018-02-12 10:27:14 +010047 android:icon="@mipmap/ic_launcher"
Benson Huanga8b6afc2014-11-20 15:42:26 +080048 android:label="@string/app_name" >
49
50 <activity
51 android:name=".FmMainActivity"
52 android:label="@string/app_name"
53 android:launchMode="standard"
Alex Klyubin02804a42015-04-02 13:21:52 -070054 android:theme="@style/AppTheme"
Michael Bestas851fc7e2021-10-11 18:50:18 +030055 android:exported="true"
Alex Klyubin02804a42015-04-02 13:21:52 -070056 android:usesCleartextTraffic="false" >
Benson Huanga8b6afc2014-11-20 15:42:26 +080057 <intent-filter>
58 <action android:name="android.intent.action.MAIN" />
59 <category android:name="android.intent.category.LAUNCHER" />
60 </intent-filter>
61 </activity>
62 <activity
63 android:name=".FmFavoriteActivity"
64 android:configChanges="screenSize"
65 android:label="@string/station_title"
66 android:launchMode="singleTask"
67 android:theme="@style/LightTheme"
68 android:windowSoftInputMode="stateAlwaysHidden" >
69 </activity>
70
71 <service
72 android:name=".FmService"
73 android:exported="false" >
74 <intent-filter>
75 <action android:name="com.android.fmradio.IFmRadioService" />
76 </intent-filter>
77 </service>
78
79 <provider
80 android:name=".FmProvider"
81 android:authorities="com.android.fmradio"
82 android:exported="false" >
83 </provider>
84
85 <activity
86 android:name=".FmRecordActivity"
87 android:label="@string/record_title"
88 android:theme="@style/LightTheme"
89 android:launchMode="singleTask" >
90 </activity>
91 </application>
92
93</manifest>