Zhomart Mukhamejanov | 590b249 | 2019-05-31 18:03:11 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | Copyright (C) 2019 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 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Howard Hao | a9151e4 | 2019-08-15 17:22:38 -0700 | [diff] [blame] | 18 | package="com.android.car.bugreport" |
Zhomart Mukhamejanov | 8ab4aaa | 2020-02-14 14:21:09 -0800 | [diff] [blame] | 19 | android:versionCode="13" |
| 20 | android:versionName="1.7.2"> |
Zhomart Mukhamejanov | 590b249 | 2019-05-31 18:03:11 -0700 | [diff] [blame] | 21 | |
Zhomart Mukhamejanov | 741d06f | 2019-06-25 16:52:10 -0700 | [diff] [blame] | 22 | <uses-permission android:name="android.car.permission.CAR_DRIVING_STATE"/> |
Zhomart Mukhamejanov | 590b249 | 2019-05-31 18:03:11 -0700 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.INTERNET"/> |
| 24 | <uses-permission android:name="android.permission.READ_LOGS"/> |
| 25 | <uses-permission android:name="android.permission.READ_FRAME_BUFFER"/> |
| 26 | <uses-permission android:name="android.permission.RECORD_AUDIO"/> |
| 27 | <uses-permission android:name="android.permission.MANAGE_USERS"/> |
| 28 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS"/> |
| 29 | <uses-permission android:name="android.permission.FOREGROUND_SERVICE"/> |
| 30 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> |
| 31 | <uses-permission android:name="android.permission.DUMP"/> |
Zhomart Mukhamejanov | a11e548 | 2019-12-17 11:31:22 -0800 | [diff] [blame] | 32 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"/> |
| 33 | <uses-permission android:name="android.permission.READ_DEVICE_CONFIG"/> |
| 34 | <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> |
Zhomart Mukhamejanov | 590b249 | 2019-05-31 18:03:11 -0700 | [diff] [blame] | 35 | |
Zhomart Mukhamejanov | 02c339e | 2019-12-16 17:59:03 -0800 | [diff] [blame] | 36 | <application android:label="@string/app_name" |
| 37 | android:icon="@drawable/ic_launcher" |
| 38 | android:requestLegacyExternalStorage="true"> |
Zhomart Mukhamejanov | 590b249 | 2019-05-31 18:03:11 -0700 | [diff] [blame] | 39 | <activity android:name=".BugReportInfoActivity" |
| 40 | android:theme="@android:style/Theme.DeviceDefault.NoActionBar" |
Zhomart Mukhamejanov | b30e76f | 2019-06-27 11:13:55 -0700 | [diff] [blame] | 41 | android:exported="true" |
| 42 | android:launchMode="singleInstance"> |
Zhomart Mukhamejanov | 590b249 | 2019-05-31 18:03:11 -0700 | [diff] [blame] | 43 | <intent-filter> |
| 44 | <action android:name="android.intent.action.MAIN"/> |
| 45 | <category android:name="android.intent.category.LAUNCHER"/> |
| 46 | <action android:name="android.intent.action.VIEW"/> |
Zhomart Mukhamejanov | a11e548 | 2019-12-17 11:31:22 -0800 | [diff] [blame] | 47 | </intent-filter> |
| 48 | </activity> |
| 49 | |
| 50 | <!-- |
| 51 | singleInstance allows starting bugreport dialog when BugReportInfoActivity is open. |
| 52 | --> |
| 53 | <activity android:name=".BugReportActivity" |
| 54 | android:theme="@android:style/Theme.DeviceDefault.Dialog" |
| 55 | android:exported="true" |
| 56 | android:launchMode="singleInstance" |
| 57 | android:excludeFromRecents="true"> |
| 58 | <meta-data android:name="distractionOptimized" android:value="true"/> |
| 59 | <intent-filter> |
Zhomart Mukhamejanov | 502f663 | 2019-12-16 18:22:55 -0800 | [diff] [blame] | 60 | <action android:name="com.android.car.bugreport.action.START_SILENT"/> |
Zhomart Mukhamejanov | 590b249 | 2019-05-31 18:03:11 -0700 | [diff] [blame] | 61 | </intent-filter> |
| 62 | </activity> |
| 63 | |
Zhomart Mukhamejanov | 590b249 | 2019-05-31 18:03:11 -0700 | [diff] [blame] | 64 | <service android:name=".BugReportService" |
Zhomart Mukhamejanov | a11e548 | 2019-12-17 11:31:22 -0800 | [diff] [blame] | 65 | android:exported="true"> |
| 66 | <intent-filter> |
| 67 | <action android:name="com.android.car.bugreport.action.START_SILENT"/> |
| 68 | </intent-filter> |
| 69 | </service> |
Zhomart Mukhamejanov | 590b249 | 2019-05-31 18:03:11 -0700 | [diff] [blame] | 70 | |
Howard Hao | a9151e4 | 2019-08-15 17:22:38 -0700 | [diff] [blame] | 71 | <service android:name="com.android.car.bugreport.UploadJob" |
Zhomart Mukhamejanov | 590b249 | 2019-05-31 18:03:11 -0700 | [diff] [blame] | 72 | android:permission="android.permission.BIND_JOB_SERVICE" |
| 73 | android:exported="true"/> |
| 74 | |
| 75 | <receiver android:name=".StartUpBootReceiver" |
| 76 | android:exported="true"> |
| 77 | <intent-filter> |
| 78 | <action android:name="android.intent.action.BOOT_COMPLETED"/> |
| 79 | </intent-filter> |
| 80 | </receiver> |
| 81 | |
Howard Hao | a9151e4 | 2019-08-15 17:22:38 -0700 | [diff] [blame] | 82 | <provider android:name="com.android.car.bugreport.BugStorageProvider" |
| 83 | android:authorities="com.android.car.bugreport" |
Zhomart Mukhamejanov | 590b249 | 2019-05-31 18:03:11 -0700 | [diff] [blame] | 84 | android:exported="false" |
| 85 | android:singleUser="true" |
| 86 | android:multiprocess="false"> |
| 87 | </provider> |
| 88 | </application> |
| 89 | </manifest> |