blob: b841d09db7a2f932f4354735f63b9a40a9be60d2 [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"
Jeremy Friesen674e8d92019-07-25 08:17:38 -060019 android:versionName="4.0.1"
20 android:versionCode="040001"
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"
Jeremy Friesen674e8d92019-07-25 08:17:38 -060025 android:targetSdkVersion="28"
Rohan Martinc52e0ae2012-11-16 21:27:33 -070026 />
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" >
Jeremy Friesen674e8d92019-07-25 08:17:38 -060032
Rohan Martin3d194502012-11-01 15:19:04 -060033 <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>
Jeremy Friesen674e8d92019-07-25 08:17:38 -060038
Rohan Martin3d194502012-11-01 15:19:04 -060039 <meta-data android:name="ANT_AdapterType"
40 android:value="built-in"
41 />
42 </service>
Jeremy Friesen674e8d92019-07-25 08:17:38 -060043
44 <receiver android:name="com.dsi.ant.server.startup.BootCompletedReceiver"
45 android:enabled="true"
Rohan Martin3d194502012-11-01 15:19:04 -060046 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" />
Jeremy Friesen674e8d92019-07-25 08:17:38 -060065</manifest>