blob: 86060d79075b7f85235333a420c2103be9edb93a [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
24 <application android:label="@string/app_title"
25 android:directBootAware="true"
26 android:allowBackup="false"
27 android:persistent="false">
28 <service android:name=".ExperimentalCarService"
Jordan Jozwiak9789ac52019-12-06 16:52:26 -080029 android:singleUser="true">
Keun young Park9a91efb2019-11-15 18:10:47 -080030 </service>
Jordan Jozwiak9789ac52019-12-06 16:52:26 -080031 <service android:name=".TouchDriverAwarenessSupplier"/>
32 <service android:name=".SampleExternalDriverAwarenessSupplier"/>
Keun young Park9a91efb2019-11-15 18:10:47 -080033 </application>
34</manifest>