summaryrefslogtreecommitdiffstats
path: root/packages/PrintSpooler/AndroidManifest.xml
diff options
context:
space:
mode:
authorSvetoslav <svetoslavganov@google.com>2013-10-11 11:28:30 -0700
committerSvetoslav <svetoslavganov@google.com>2013-10-11 12:39:47 -0700
commit54adee86af495311fc9ef62d65e035605043413f (patch)
tree9b3a425ae1703237df83fe04f797817828e625ea /packages/PrintSpooler/AndroidManifest.xml
parent8da6bc53c89020de7e6c252bcb1e658f4fb0c32f (diff)
downloadframeworks_base-54adee86af495311fc9ef62d65e035605043413f.zip
frameworks_base-54adee86af495311fc9ef62d65e035605043413f.tar.gz
frameworks_base-54adee86af495311fc9ef62d65e035605043413f.tar.bz2
Print spooler not starting.
1. In my previous change I fixed a typo in the Java constant with intent action to launch the print dialog but failed to updated the print spooler manifest. 2. Removed dead code - the user id is no longer needed since the spooler is an app that runs per user. Every user has its spooler. This code was not referenced from anywhere. 3. Added a default icon to the print spooler. 4. Fixed a bug where if the print history is empty the UI goes to the all pritners activity. bug:11059554 Change-Id: If74c23b418a8c67620ba14435ee7f3b2c4527099
Diffstat (limited to 'packages/PrintSpooler/AndroidManifest.xml')
-rw-r--r--packages/PrintSpooler/AndroidManifest.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/PrintSpooler/AndroidManifest.xml b/packages/PrintSpooler/AndroidManifest.xml
index 4856491..e1d0aec 100644
--- a/packages/PrintSpooler/AndroidManifest.xml
+++ b/packages/PrintSpooler/AndroidManifest.xml
@@ -45,7 +45,8 @@
android:allowClearUserData="true"
android:label="@string/app_label"
android:allowBackup= "false"
- android:supportsRtl="true">
+ android:supportsRtl="true"
+ android:icon="@*android:drawable/ic_print">
<service
android:name=".PrintSpoolerService"
@@ -59,7 +60,7 @@
android:permission="android.permission.BIND_PRINT_SPOOLER_SERVICE"
android:theme="@style/PrintJobConfigActivityTheme">
<intent-filter>
- <action android:name="android.print.PRINT_DILAOG" />
+ <action android:name="android.print.PRINT_DIALOG" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="printjob" android:pathPattern="*" />
</intent-filter>