Benson Huang | a8b6afc | 2014-11-20 15:42:26 +0800 | [diff] [blame] | 1 | <?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 Domakonda | acaf0ec | 2015-07-20 20:28:49 +0530 | [diff] [blame] | 20 | android:sharedUserId="android.uid.system" |
Benson Huang | a8b6afc | 2014-11-20 15:42:26 +0800 | [diff] [blame] | 21 | android:versionCode="2" |
| 22 | android:versionName="2.0" > |
| 23 | |
| 24 | <!-- FM uses AudioPatch which is new in sdk 21 --> |
| 25 | <uses-sdk |
Michael W | cea975b | 2023-04-05 16:44:31 -0400 | [diff] [blame] | 26 | android:minSdkVersion="26" |
| 27 | android:targetSdkVersion="30" |
Alex Klyubin | 8b82a30 | 2015-05-15 09:35:48 -0700 | [diff] [blame] | 28 | android:usesCleartextTraffic="false" /> |
Benson Huang | a8b6afc | 2014-11-20 15:42:26 +0800 | [diff] [blame] | 29 | |
| 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 Huang | 2816b93 | 2014-12-24 16:25:46 +0800 | [diff] [blame] | 34 | <uses-permission android:name="android.permission.BLUETOOTH" /> |
Benson Huang | a8b6afc | 2014-11-20 15:42:26 +0800 | [diff] [blame] | 35 | <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" /> |
nift4 | 25b8ce2 | 2023-05-11 23:21:40 +0200 | [diff] [blame^] | 43 | <uses-permission android:name="com.android.fmradio.recordings.permission.PLAY_RECORDING" /> |
Benson Huang | a8b6afc | 2014-11-20 15:42:26 +0800 | [diff] [blame] | 44 | |
| 45 | <application |
| 46 | android:hardwareAccelerated="true" |
Asher Simonds | 8be8e01 | 2018-02-12 10:27:14 +0100 | [diff] [blame] | 47 | android:icon="@mipmap/ic_launcher" |
Benson Huang | a8b6afc | 2014-11-20 15:42:26 +0800 | [diff] [blame] | 48 | android:label="@string/app_name" > |
| 49 | |
| 50 | <activity |
| 51 | android:name=".FmMainActivity" |
| 52 | android:label="@string/app_name" |
| 53 | android:launchMode="standard" |
Alex Klyubin | 02804a4 | 2015-04-02 13:21:52 -0700 | [diff] [blame] | 54 | android:theme="@style/AppTheme" |
Michael Bestas | 851fc7e | 2021-10-11 18:50:18 +0300 | [diff] [blame] | 55 | android:exported="true" |
Alex Klyubin | 02804a4 | 2015-04-02 13:21:52 -0700 | [diff] [blame] | 56 | android:usesCleartextTraffic="false" > |
Benson Huang | a8b6afc | 2014-11-20 15:42:26 +0800 | [diff] [blame] | 57 | <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> |