blob: 6fa3ed4aa0c8725a64482d4a24b869b4350765ec [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 Ganov44720af2013-08-20 16:32:53 -070021 android:sharedUserId="android.uid.printspooler"
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070022 android:versionName="1"
Svetoslav Ganovd26d4892013-08-28 14:37:54 -070023 android:versionCode="1">
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070024
Svetoslav Ganovd26d4892013-08-28 14:37:54 -070025 <!-- Allows an application to call APIs that give it access to all print jobs
26 on the device. Usually an app can access only the print jobs it created.
27 -->
28 <permission
29 android:name="com.android.printspooler.permission.ACCESS_ALL_PRINT_JOBS"
30 android:label="@string/permlab_accessAllPrintJobs"
31 android:description="@string/permdesc_accessAllPrintJobs"
32 android:protectionLevel="signature" />
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070033
Svetoslav Ganovd26d4892013-08-28 14:37:54 -070034 <uses-permission android:name="com.android.printspooler.permission.ACCESS_ALL_PRINT_JOBS"/>
Svetoslav Ganov8c433762013-08-02 14:22:19 -070035 <uses-permission android:name="android.permission.ACCESS_ALL_PRINT_JOBS"/>
36 <uses-permission android:name="android.permission.WAKE_LOCK"/>
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070037
Svetoslav Ganovd26d4892013-08-28 14:37:54 -070038 <uses-sdk android:minSdkVersion="18" android:targetSdkVersion="18"/>
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070039
40 <application
41 android:allowClearUserData="false"
42 android:label="@string/app_label"
Svetoslav Ganov44720af2013-08-20 16:32:53 -070043 android:allowBackup= "false"
44 android:supportsRtl="true">
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070045
46 <service
47 android:name=".PrintSpoolerService"
48 android:exported="true"
49 android:permission="android.permission.BIND_PRINT_SPOOLER_SERVICE">
50 </service>
51
52 <activity
53 android:name=".PrintJobConfigActivity"
Svetoslav Ganov44720af2013-08-20 16:32:53 -070054 android:configChanges="orientation|screenSize"
Svetoslav Ganov32c5eb32013-08-06 23:49:25 -070055 android:exported="false"
56 android:theme="@style/PrintJobConfigActivityTheme">
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070057 </activity>
58
Svetoslav66160bb2013-08-12 22:36:50 -070059 <activity
Svetoslav269403b2013-08-14 17:31:04 -070060 android:name=".SelectPrinterActivity"
61 android:label="@string/all_printers_label"
62 android:theme="@style/SelectPrinterActivityTheme"
63 android:exported="false">
Svetoslav66160bb2013-08-12 22:36:50 -070064 </activity>
65
Svetoslav Ganov8c433762013-08-02 14:22:19 -070066 <receiver
67 android:name=".NotificationController$NotificationBroadcastReceiver"
68 android:exported="false" >
69 </receiver>
70
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070071 </application>
72
73</manifest>