blob: 09e50b1529615116ad12ea13c198009c8f1e7f90 [file] [log] [blame]
Keun young Park9a91efb2019-11-15 18:10:47 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2019 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
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Jordan Jozwiak9789ac52019-12-06 16:52:26 -080018 package="com.android.experimentalcar"
19 coreApp="true"
20 android:sharedUserId="android.uid.system">
Keun young Park9a91efb2019-11-15 18:10:47 -080021
Jordan Jozwiak9789ac52019-12-06 16:52:26 -080022 <original-package android:name="com.android.experimentalcar"/>
Keun young Park9a91efb2019-11-15 18:10:47 -080023
Jordan Jozwiake28075b2020-01-21 14:41:45 -080024 <!-- Allows an application to get the driver's current distraction level.
25 <p>Protection level: signature|privileged
26 -->
27 <permission
28 android:name="android.car.permission.CAR_DRIVER_DISTRACTION"
29 android:protectionLevel="signature|privileged"
30 android:label="@string/car_permission_label_driver_distraction"
31 android:description="@string/car_permission_desc_driver_distraction"/>
32
Keun young Park9a91efb2019-11-15 18:10:47 -080033 <application android:label="@string/app_title"
34 android:directBootAware="true"
35 android:allowBackup="false"
36 android:persistent="false">
37 <service android:name=".ExperimentalCarService"
Jordan Jozwiak9789ac52019-12-06 16:52:26 -080038 android:singleUser="true">
Keun young Park9a91efb2019-11-15 18:10:47 -080039 </service>
Michael Keller8d547f32020-02-05 15:25:23 -080040 <service android:name=".TouchDriverAwarenessSupplier" android:exported="false"/>
41 <service android:name=".GazeDriverAwarenessSupplier" android:exported="false"/>
42 <service android:name=".SampleExternalDriverAwarenessSupplier" android:exported="false"/>
Keun young Park9a91efb2019-11-15 18:10:47 -080043 </application>
44</manifest>