blob: 1bc42d81655a8c6586e64baf64653b5fa4b493b9 [file] [log] [blame]
Rohan Martin3d194502012-11-01 15:19:04 -06001<?xml version="1.0" encoding="utf-8"?>
2<!--
3Copyright 2011 Dynastream Innovations Inc.
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16-->
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18 package="com.dsi.ant.server"
James Bootsmab3365612018-03-06 11:07:06 -070019 android:versionName="5.0.0_hidl_1"
20 android:versionCode="050000"
Rohan Martin3d194502012-11-01 15:19:04 -060021 android:sharedUserId="android.uid.system">
Rohan Martinc52e0ae2012-11-16 21:27:33 -070022
23 <uses-sdk
24 android:minSdkVersion="7"
25 android:targetSdkVersion="10"
26 />
27
ANT-Shane8d63c292014-01-24 15:04:56 -070028 <application android:icon="@drawable/ic_launcher"
Rohan Martin3d194502012-11-01 15:19:04 -060029 android:label="@string/app_name"
30 android:process="system"
31 android:permission="com.dsi.ant.permission.ANTRADIO" >
32
33 <service android:exported="true" android:name=".AntService">
34 <intent-filter>
35 <action android:name="com.dsi.ant.server.IAntHal" />
36 <action android:name="com.dsi.ant.intent.request.SERVICE_INFO" />
37 </intent-filter>
38
39 <meta-data android:name="ANT_AdapterType"
40 android:value="built-in"
41 />
42 </service>
43
44 <receiver android:name="com.dsi.ant.server.startup.BootCompletedReceiver"
45 android:enabled="true"
46 android:exported="false"
47 android:label="BootCompletedReceiver">
48 <intent-filter>
49 <action android:name="android.intent.action.BOOT_COMPLETED" />
50 </intent-filter>
51 </receiver>
Khurshidff82ea42013-07-18 15:40:23 -060052
Rohan Martin3d194502012-11-01 15:19:04 -060053 </application>
54
55 <!-- These permissions should be defined in the system -->
Rohan Martin3d194502012-11-01 15:19:04 -060056 <permission android:name="com.dsi.ant.permission.ANTRADIO"
57 android:protectionLevel="dangerous"
58 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
59 android:description="@string/permdesc_antradio"
60 android:label="@string/permlab_antradio"/>
61
Khurshidff82ea42013-07-18 15:40:23 -060062 <uses-permission android:name="android.permission.BLUETOOTH" />
63 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
Rohan Martin3d194502012-11-01 15:19:04 -060064 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
ANT-Shane38e084f2014-01-24 17:21:37 -070065 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" />
66 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
67 <uses-permission android:name="android.permission.MANAGE_USERS"/>
Rohan Martin3d194502012-11-01 15:19:04 -060068</manifest>