blob: 7eea3e919a20caa8f69c16ef8f6b07f8ee922b13 [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"
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070021 android:versionName="1"
Svetoslav Ganovd26d4892013-08-28 14:37:54 -070022 android:versionCode="1">
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070023
Svetoslav Ganovd26d4892013-08-28 14:37:54 -070024 <!-- Allows an application to call APIs that give it access to all print jobs
Svetoslav Ganov860f8a62013-09-14 00:59:03 -070025 on the device. Usually an app can access only the print jobs it created. -->
Svetoslav Ganovd26d4892013-08-28 14:37:54 -070026 <permission
27 android:name="com.android.printspooler.permission.ACCESS_ALL_PRINT_JOBS"
28 android:label="@string/permlab_accessAllPrintJobs"
29 android:description="@string/permdesc_accessAllPrintJobs"
30 android:protectionLevel="signature" />
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070031
Svetoslav Ganov860f8a62013-09-14 00:59:03 -070032 <!-- May be required by the settings and add printer activities of a
33 print service if the developer wants only trusted system code to
34 be able to launch these activities. -->
35 <permission android:name="android.permission.START_PRINT_SERVICE_CONFIG_ACTIVITY"
36 android:label="@string/permlab_startPrintServiceConfigActivity"
37 android:description="@string/permdesc_startPrintServiceConfigActivity"
38 android:protectionLevel="signature" />
39
Svetoslav Ganovd26d4892013-08-28 14:37:54 -070040 <uses-permission android:name="com.android.printspooler.permission.ACCESS_ALL_PRINT_JOBS"/>
Svetoslav Ganov8c433762013-08-02 14:22:19 -070041 <uses-permission android:name="android.permission.WAKE_LOCK"/>
Svetoslav Ganov860f8a62013-09-14 00:59:03 -070042 <uses-permission android:name="android.permission.START_PRINT_SERVICE_CONFIG_ACTIVITY"/>
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070043
Svetoslav Ganovd26d4892013-08-28 14:37:54 -070044 <uses-sdk android:minSdkVersion="18" android:targetSdkVersion="18"/>
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070045
46 <application
Svetoslav2fbd2a72013-09-16 17:53:51 -070047 android:allowClearUserData="true"
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070048 android:label="@string/app_label"
Svetoslav Ganov44720af2013-08-20 16:32:53 -070049 android:allowBackup= "false"
50 android:supportsRtl="true">
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070051
52 <service
53 android:name=".PrintSpoolerService"
54 android:exported="true"
55 android:permission="android.permission.BIND_PRINT_SPOOLER_SERVICE">
56 </service>
57
58 <activity
59 android:name=".PrintJobConfigActivity"
Svetoslav Ganov44720af2013-08-20 16:32:53 -070060 android:configChanges="orientation|screenSize"
Svetoslav7bfbbcb2013-10-10 13:36:23 -070061 android:permission="android.permission.BIND_PRINT_SPOOLER_SERVICE"
Svetoslav Ganov32c5eb32013-08-06 23:49:25 -070062 android:theme="@style/PrintJobConfigActivityTheme">
Svetoslav7bfbbcb2013-10-10 13:36:23 -070063 <intent-filter>
64 <action android:name="android.print.PRINT_DILAOG" />
65 <category android:name="android.intent.category.DEFAULT" />
66 <data android:scheme="printjob" android:pathPattern="*" />
67 </intent-filter>
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070068 </activity>
69
Svetoslav66160bb2013-08-12 22:36:50 -070070 <activity
Svetoslav269403b2013-08-14 17:31:04 -070071 android:name=".SelectPrinterActivity"
72 android:label="@string/all_printers_label"
73 android:theme="@style/SelectPrinterActivityTheme"
74 android:exported="false">
Svetoslav66160bb2013-08-12 22:36:50 -070075 </activity>
76
Svetoslav Ganov8c433762013-08-02 14:22:19 -070077 <receiver
78 android:name=".NotificationController$NotificationBroadcastReceiver"
79 android:exported="false" >
80 </receiver>
81
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070082 </application>
83
84</manifest>