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" |
Rohan Martin | c52e0ae | 2012-11-16 21:27:33 -0700 | [diff] [blame^] | 19 | android:versionName="2.0.1" |
| 20 | android:versionCode="020001" |
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 | |
Rohan Martin | 3d19450 | 2012-11-01 15:19:04 -0600 | [diff] [blame] | 28 | <application android:icon="@drawable/icon" |
| 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> |
| 52 | |
| 53 | </application> |
| 54 | |
| 55 | <!-- These permissions should be defined in the system --> |
| 56 | <permission android:name="com.dsi.ant.permission.ANT" |
| 57 | android:protectionLevel="dangerous" |
| 58 | android:permissionGroup="android.permission-group.NETWORK" |
| 59 | android:description="@string/permdesc_ant" |
| 60 | android:label="@string/permlab_ant"/> |
| 61 | |
| 62 | <permission android:name="com.dsi.ant.permission.ANT_ADMIN" |
| 63 | android:protectionLevel="dangerous" |
| 64 | android:permissionGroup="android.permission-group.SYSTEM_TOOLS" |
| 65 | android:description="@string/permdesc_antAdmin" |
| 66 | android:label="@string/permlab_antAdmin"/> |
| 67 | |
| 68 | <permission android:name="com.dsi.ant.permission.ANTRADIO" |
| 69 | android:protectionLevel="dangerous" |
| 70 | android:permissionGroup="android.permission-group.SYSTEM_TOOLS" |
| 71 | android:description="@string/permdesc_antradio" |
| 72 | android:label="@string/permlab_antradio"/> |
| 73 | |
Rohan Martin | 3d19450 | 2012-11-01 15:19:04 -0600 | [diff] [blame] | 74 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
| 75 | </manifest> |