Rohan Martin | 3d19450 | 2012-11-01 15:19:04 -0600 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | Copyright 2011 Dynastream Innovations Inc. |
| 4 | |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | --> |
| 17 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 18 | package="com.dsi.ant.server" |
ANT-Shane | 5846d51 | 2014-08-25 12:26:59 -0600 | [diff] [blame] | 19 | android:versionName="4.0.0" |
ANT-Shane | 8d63c29 | 2014-01-24 15:04:56 -0700 | [diff] [blame] | 20 | android:versionCode="030200" |
Rohan Martin | 3d19450 | 2012-11-01 15:19:04 -0600 | [diff] [blame] | 21 | android:sharedUserId="android.uid.system"> |
Rohan Martin | c52e0ae | 2012-11-16 21:27:33 -0700 | [diff] [blame] | 22 | |
| 23 | <uses-sdk |
| 24 | android:minSdkVersion="7" |
| 25 | android:targetSdkVersion="10" |
| 26 | /> |
| 27 | |
ANT-Shane | 8d63c29 | 2014-01-24 15:04:56 -0700 | [diff] [blame] | 28 | <application android:icon="@drawable/ic_launcher" |
Rohan Martin | 3d19450 | 2012-11-01 15:19:04 -0600 | [diff] [blame] | 29 | 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> |
Khurshid | ff82ea4 | 2013-07-18 15:40:23 -0600 | [diff] [blame] | 52 | |
Rohan Martin | 3d19450 | 2012-11-01 15:19:04 -0600 | [diff] [blame] | 53 | </application> |
| 54 | |
| 55 | <!-- These permissions should be defined in the system --> |
Rohan Martin | 3d19450 | 2012-11-01 15:19:04 -0600 | [diff] [blame] | 56 | <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 | |
Khurshid | ff82ea4 | 2013-07-18 15:40:23 -0600 | [diff] [blame] | 62 | <uses-permission android:name="android.permission.BLUETOOTH" /> |
| 63 | <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> |
Rohan Martin | 3d19450 | 2012-11-01 15:19:04 -0600 | [diff] [blame] | 64 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
| 65 | </manifest> |