blob: d31bd7e74b516b55ea4d3137dfeca0dcac6b6c1e [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" />
Rakesh Iyer3506f3f2016-10-19 23:58:48 -070027 <uses-feature android:name="android.hardware.usb.host" />
Rakesh Iyer3506f3f2016-10-19 23:58:48 -070028
29 <application
Nicholas Sauerf4498752018-02-02 23:52:29 -080030 android:label="@string/title"
Nicholas Sauer80fcb282018-05-14 20:28:06 -070031 android:theme="@style/SystemUpdaterTheme">
Rakesh Iyer3506f3f2016-10-19 23:58:48 -070032 <activity
33 android:name="com.android.car.systemupdater.SystemUpdaterActivity"
Nicholas Sauer80fcb282018-05-14 20:28:06 -070034 android:label="@string/title">
Rakesh Iyer3506f3f2016-10-19 23:58:48 -070035 <intent-filter>
36 <action android:name="android.intent.action.MAIN" />
Rakesh Iyer3506f3f2016-10-19 23:58:48 -070037 </intent-filter>
38 <intent-filter>
39 <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
40 </intent-filter>
Nicholas Sauer59eeada2018-01-31 16:40:37 -080041 <intent-filter>
42 <action android:name="com.android.settings.action.EXTRA_SETTINGS" />
43 <category android:name="android.intent.category.DEFAULT" />
44 </intent-filter>
Nicholas Sauerf4498752018-02-02 23:52:29 -080045 <meta-data android:name="com.android.settings.title"
46 android:resource="@string/title" />
47 <meta-data android:name="com.android.settings.icon"
48 android:resource="@drawable/ic_system_update_alt_black_48dp" />
Alex Stetson4c3232a2020-12-10 13:57:39 -080049 <meta-data android:name="com.android.settings.icon_tintable"
50 android:value="true" />
Nicholas Sauerf4498752018-02-02 23:52:29 -080051 <meta-data android:name="com.android.settings.category"
davidln7cc48592019-02-15 16:25:24 -080052 android:value="com.android.settings.category.ia.system" />
Rakesh Iyer3506f3f2016-10-19 23:58:48 -070053 </activity>
54 </application>
Rakesh Iyer3506f3f2016-10-19 23:58:48 -070055</manifest>