blob: cd6abb267e44741eab612eba8316b63261f36c6c [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"
Philip P. Moltmannc43639c2015-12-18 13:58:40 -080020 package="com.android.printspooler">
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070021
Svetoslav Ganovd26d4892013-08-28 14:37:54 -070022 <!-- Allows an application to call APIs that give it access to all print jobs
Svetoslav Ganov860f8a62013-09-14 00:59:03 -070023 on the device. Usually an app can access only the print jobs it created. -->
Svetoslav Ganovd26d4892013-08-28 14:37:54 -070024 <permission
25 android:name="com.android.printspooler.permission.ACCESS_ALL_PRINT_JOBS"
Svetoslav Ganovd26d4892013-08-28 14:37:54 -070026 android:protectionLevel="signature" />
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070027
Svetoslav Ganov860f8a62013-09-14 00:59:03 -070028 <!-- May be required by the settings and add printer activities of a
29 print service if the developer wants only trusted system code to
30 be able to launch these activities. -->
31 <permission android:name="android.permission.START_PRINT_SERVICE_CONFIG_ACTIVITY"
Svetoslav Ganov860f8a62013-09-14 00:59:03 -070032 android:protectionLevel="signature" />
33
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.WAKE_LOCK"/>
Svetoslav Ganov860f8a62013-09-14 00:59:03 -070036 <uses-permission android:name="android.permission.START_PRINT_SERVICE_CONFIG_ACTIVITY"/>
Philip P. Moltmann68700332017-06-19 10:55:09 -070037 <uses-permission android:name="android.permission.READ_PRINT_SERVICES" />
38 <uses-permission android:name="android.permission.READ_PRINT_SERVICE_RECOMMENDATIONS" />
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070039
Chad Brubakere2107312019-02-04 12:30:01 -080040 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
41 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
Philip P. Moltmanndea27352018-12-03 13:37:43 -080042
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070043 <application
Svetoslava798c0a2014-05-15 10:47:19 -070044 android:allowClearUserData="true"
45 android:label="@string/app_label"
Philip P. Moltmann2d1c0b72018-12-07 09:12:04 -080046 android:icon="@drawable/ic_app_icon"
Svetoslavfed71732014-08-20 13:26:54 -070047 android:supportsRtl="true">
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070048
49 <service
Svetoslava798c0a2014-05-15 10:47:19 -070050 android:name=".model.PrintSpoolerService"
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070051 android:exported="true"
52 android:permission="android.permission.BIND_PRINT_SPOOLER_SERVICE">
53 </service>
54
Svet Ganov13f542ca2014-08-29 15:35:49 -070055 <service
Svetoslav62ce3322014-09-04 21:17:17 -070056 android:name=".renderer.PdfManipulationService"
Svetoslav2fb64a52014-09-12 13:55:30 -070057 android:isolatedProcess="true"
58 android:process=":renderer">
Svet Ganov13f542ca2014-08-29 15:35:49 -070059 </service>
60
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070061 <activity
Svetoslava798c0a2014-05-15 10:47:19 -070062 android:name=".ui.PrintActivity"
Philip P. Moltmann172d8402016-04-29 15:40:23 -070063 android:configChanges="mnc|mnc|touchscreen|navigation|screenLayout|screenSize|smallestScreenSize|orientation|locale|keyboard|keyboardHidden|fontScale|uiMode|layoutDirection|density"
Svetoslav7bfbbcb2013-10-10 13:36:23 -070064 android:permission="android.permission.BIND_PRINT_SPOOLER_SERVICE"
Philip P. Moltmann66c96592016-02-24 11:32:43 -080065 android:theme="@style/Theme.PrintActivity">
Svetoslav7bfbbcb2013-10-10 13:36:23 -070066 <intent-filter>
Svetoslav54adee82013-10-11 11:28:30 -070067 <action android:name="android.print.PRINT_DIALOG" />
Svetoslav7bfbbcb2013-10-10 13:36:23 -070068 <category android:name="android.intent.category.DEFAULT" />
69 <data android:scheme="printjob" android:pathPattern="*" />
70 </intent-filter>
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070071 </activity>
72
Svetoslav66160bb2013-08-12 22:36:50 -070073 <activity
Svetoslava798c0a2014-05-15 10:47:19 -070074 android:name=".ui.SelectPrinterActivity"
Svetoslav269403b2013-08-14 17:31:04 -070075 android:label="@string/all_printers_label"
Philip P. Moltmann66c96592016-02-24 11:32:43 -080076 android:theme="@style/Theme.SelectPrinterActivity"
Philip P. Moltmann3af7f822016-10-26 09:15:26 -070077 android:parentActivityName=".ui.PrintActivity"
Philip P. Moltmann66c96592016-02-24 11:32:43 -080078 android:exported="false">
79 </activity>
80
81 <activity
82 android:name=".ui.AddPrinterActivity"
83 android:label="@string/print_add_printer"
84 android:theme="@style/Theme.AddPrinterActivity"
Philip P. Moltmann3af7f822016-10-26 09:15:26 -070085 android:parentActivityName=".ui.SelectPrinterActivity"
Svetoslav269403b2013-08-14 17:31:04 -070086 android:exported="false">
Svetoslav66160bb2013-08-12 22:36:50 -070087 </activity>
88
Svetoslav Ganov8c433762013-08-02 14:22:19 -070089 <receiver
Svet Ganova4ab78082014-07-14 08:40:12 -070090 android:name=".model.NotificationController$NotificationBroadcastReceiver"
Svetoslav Ganov8c433762013-08-02 14:22:19 -070091 android:exported="false" >
92 </receiver>
93
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -070094 </application>
95
96</manifest>