blob: fbb0060fa4a1a5a3382ae3a815dc87f8018cd39a [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"
21 android:sharedUserId="android.uid.printspooler"
22 android:versionName="1"
23 android:versionCode="1"
24 coreApp="true">
25
26 <uses-sdk android:minSdkVersion="17" android:targetSdkVersion="17"/>
27
28 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
29 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"/>
30
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"
49 android:exported="true">
50 </activity>
51
52 </application>
53
54</manifest>