blob: 81fa46d3b8fd2e0eeba879168cdbe21d45c88995 [file] [log] [blame]
Pavel Maltsev8cf86912016-04-01 18:01:51 -07001<?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 package="android.car.cluster.loggingrenderer"
Roberto Perez2c01f642018-09-19 17:55:52 -070018 android:sharedUserId="android.uid.system"
Pavel Maltsev8cf86912016-04-01 18:01:51 -070019 android:versionCode="1"
20 android:versionName="1.0">
Roberto Perez2c01f642018-09-19 17:55:52 -070021
22 <protected-broadcast android:name="android.car.cluster.NAVIGATION_STATE_UPDATE"/>
23
24 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS"/>
25
Pavel Maltsev2f534802017-02-28 13:59:26 -080026 <application android:label="@string/app_name"
27 android:icon="@drawable/ic_launcher"
28 android:directBootAware="true"
29 android:persistent="true">
Pavel Maltsev0477e292016-05-27 12:22:36 -070030 <service android:name=".LoggingClusterRenderingService"
31 android:exported="false"
32 android:permission="android.car.permission.BIND_INSTRUMENT_CLUSTER_RENDERER_SERVICE"
33 />
34 </application>
Pavel Maltsev8cf86912016-04-01 18:01:51 -070035</manifest>