1<?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"
21    android:versionName="1"
22    android:versionCode="1">
23
24    <!-- Allows an application to call APIs that give it access to all print jobs
25         on the device. Usually an app can access only the print jobs it created. -->
26    <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" />
31
32    <!-- 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
40    <uses-permission android:name="com.android.printspooler.permission.ACCESS_ALL_PRINT_JOBS"/>
41    <uses-permission android:name="android.permission.WAKE_LOCK"/>
42    <uses-permission android:name="android.permission.START_PRINT_SERVICE_CONFIG_ACTIVITY"/>
43
44    <application
45        android:allowClearUserData="true"
46        android:label="@string/app_label"
47        android:allowBackup= "false"
48        android:supportsRtl="true">
49
50        <service
51            android:name=".model.PrintSpoolerService"
52            android:exported="true"
53            android:permission="android.permission.BIND_PRINT_SPOOLER_SERVICE">
54        </service>
55
56        <service
57            android:name=".renderer.PdfManipulationService"
58            android:isolatedProcess="true"
59            android:process=":renderer">
60        </service>
61
62        <activity
63            android:name=".ui.PrintActivity"
64            android:configChanges="orientation|screenSize"
65            android:permission="android.permission.BIND_PRINT_SPOOLER_SERVICE"
66            android:theme="@style/PrintActivity">
67            <intent-filter>
68                <action android:name="android.print.PRINT_DIALOG" />
69                <category android:name="android.intent.category.DEFAULT" />
70                <data android:scheme="printjob" android:pathPattern="*" />
71            </intent-filter>
72        </activity>
73
74        <activity
75            android:name=".ui.SelectPrinterActivity"
76            android:label="@string/all_printers_label"
77            android:theme="@android:style/Theme.Material.Settings"
78            android:exported="false">
79        </activity>
80
81        <receiver
82            android:name=".model.NotificationController$NotificationBroadcastReceiver"
83            android:exported="false" >
84        </receiver>
85
86    </application>
87
88</manifest>
89