blob: 78033185f06c27063c20674ac5b423a29ece90fb [file] [log] [blame]
Kevin Crossand4285492016-11-28 18:40:43 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2016 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16<manifest xmlns:android="http://schemas.android.com/apk/res/android"
17 xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
18 package="android.car.usb.handler" >
19 <uses-sdk android:minSdkVersion="25" />
20 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
21 <uses-permission android:name="android.permission.MANAGE_USB" />
22 <application android:label="@string/app_name" android:icon="@drawable/ic_launcher"
23 android:directBootAware="true" >
24 <activity android:name=".UsbHostManagementActivity"
25 android:theme="@android:style/Theme.Material.Light.Dialog"
Justin Paupore6cf91b02019-01-08 16:01:59 -080026 android:launchMode="singleTop">
27 <meta-data
28 android:name="distractionOptimized"
29 android:value="true" />
30 </activity>
Kevin Crossand4285492016-11-28 18:40:43 -080031 <receiver android:name=".BootUsbScanner" >
32 <intent-filter>
33 <action android:name="android.intent.action.BOOT_COMPLETED" />
34 </intent-filter>
35 </receiver>
36 </application>
37</manifest>