blob: e19b269d46f65a85c4b9272c862c8d2b9d7c2aaf [file] [log] [blame]
Rakesh Iyer3506f3f2016-10-19 23:58:48 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2015 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
Nicholas Sauerf4498752018-02-02 23:52:29 -080018<manifest
19 xmlns:android="http://schemas.android.com/apk/res/android"
Nicholas Sauer2dc00462018-02-09 21:58:42 -080020 package="com.android.car.systemupdater">
21
Xihua Chen63c2fc62018-10-25 15:32:32 +080022 <uses-permission android:name="android.permission.WRITE_MEDIA_STORAGE" />
Zim4c6a4ff2020-01-24 22:56:00 +000023 <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
Rakesh Iyer3506f3f2016-10-19 23:58:48 -070024 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
25 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
Rakesh Iyer3506f3f2016-10-19 23:58:48 -070026 <uses-permission android:name="android.permission.REBOOT" />
Julia Reynoldse4a9d9f2021-12-06 18:28:28 +000027 <uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
Rakesh Iyer3506f3f2016-10-19 23:58:48 -070028 <uses-feature android:name="android.hardware.usb.host" />
Rakesh Iyer3506f3f2016-10-19 23:58:48 -070029
30 <application
Nicholas Sauerf4498752018-02-02 23:52:29 -080031 android:label="@string/title"
Nicholas Sauer80fcb282018-05-14 20:28:06 -070032 android:theme="@style/SystemUpdaterTheme">
Rakesh Iyer3506f3f2016-10-19 23:58:48 -070033 <activity
34 android:name="com.android.car.systemupdater.SystemUpdaterActivity"
Ashwini Oruganti8f809632020-05-19 18:04:28 -070035 android:exported="true"
Nicholas Sauer80fcb282018-05-14 20:28:06 -070036 android:label="@string/title">
Rakesh Iyer3506f3f2016-10-19 23:58:48 -070037 <intent-filter>
38 <action android:name="android.intent.action.MAIN" />
Rakesh Iyer3506f3f2016-10-19 23:58:48 -070039 </intent-filter>
40 <intent-filter>
41 <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
42 </intent-filter>
Nicholas Sauer59eeada2018-01-31 16:40:37 -080043 <intent-filter>
44 <action android:name="com.android.settings.action.EXTRA_SETTINGS" />
45 <category android:name="android.intent.category.DEFAULT" />
46 </intent-filter>
Nicholas Sauerf4498752018-02-02 23:52:29 -080047 <meta-data android:name="com.android.settings.title"
48 android:resource="@string/title" />
49 <meta-data android:name="com.android.settings.icon"
50 android:resource="@drawable/ic_system_update_alt_black_48dp" />
Alex Stetson5b1f0722020-12-10 13:57:39 -080051 <meta-data android:name="com.android.settings.icon_tintable"
52 android:value="true" />
Nicholas Sauerf4498752018-02-02 23:52:29 -080053 <meta-data android:name="com.android.settings.category"
davidln7cc48592019-02-15 16:25:24 -080054 android:value="com.android.settings.category.ia.system" />
Rakesh Iyer3506f3f2016-10-19 23:58:48 -070055 </activity>
56 </application>
Rakesh Iyer3506f3f2016-10-19 23:58:48 -070057</manifest>