blob: 1f10af82e876794f2ef8751c599dda1d164175f3 [file] [log] [blame]
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4 * Copyright (c) 2013 Google Inc.
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18-->
19<manifest xmlns:android="http://schemas.android.com/apk/res/android"
20 package="com.android.printspooler"
Svetoslav269403b2013-08-14 17:31:04 -070021 android:sharedUserId="android.uid.system"
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070022 android:versionName="1"
23 android:versionCode="1"
24 coreApp="true">
25
26 <uses-sdk android:minSdkVersion="17" android:targetSdkVersion="17"/>
27
Svetoslav Ganov8c433762013-08-02 14:22:19 -070028 <uses-permission android:name="android.permission.ACCESS_ALL_PRINT_JOBS"/>
29 <uses-permission android:name="android.permission.WAKE_LOCK"/>
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070030
31 <permission android:name="android.permission.BIND_PRINT_SPOOLER_SERVICE"
32 android:label="@string/permlab_bindPrintSpoolerService"
33 android:description="@string/permdesc_bindPrintSpoolerService"
34 android:protectionLevel="signature" />
35
36 <application
37 android:allowClearUserData="false"
38 android:label="@string/app_label"
39 android:allowBackup= "false">
40
41 <service
42 android:name=".PrintSpoolerService"
43 android:exported="true"
44 android:permission="android.permission.BIND_PRINT_SPOOLER_SERVICE">
45 </service>
46
47 <activity
48 android:name=".PrintJobConfigActivity"
Svetoslav Ganov32c5eb32013-08-06 23:49:25 -070049 android:exported="false"
50 android:theme="@style/PrintJobConfigActivityTheme">
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070051 </activity>
52
Svetoslav66160bb2013-08-12 22:36:50 -070053 <activity
Svetoslav269403b2013-08-14 17:31:04 -070054 android:name=".SelectPrinterActivity"
55 android:label="@string/all_printers_label"
56 android:theme="@style/SelectPrinterActivityTheme"
57 android:exported="false">
Svetoslav66160bb2013-08-12 22:36:50 -070058 </activity>
59
Svetoslav Ganov8c433762013-08-02 14:22:19 -070060 <receiver
61 android:name=".NotificationController$NotificationBroadcastReceiver"
62 android:exported="false" >
63 </receiver>
64
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070065 </application>
66
67</manifest>