1 Star 0 Fork 1

西江熊(Diya)/BuiltInPrintService

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
AndroidManifest.xml 4.61 KB
一键复制 编辑 原始数据 按行查看 历史
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2016 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<manifest package="com.android.bips"
xmlns:android="http://schemas.android.com/apk/res/android">
<uses-feature android:name="android.hardware.wifi" android:required="false"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.READ_PRINT_SERVICES" />
<uses-permission android:name="android.permission.READ_PRINT_SERVICE_RECOMMENDATIONS" />
<uses-permission android:name="android.permission.SUBSTITUTE_SHARE_TARGET_APP_NAME_AND_ICON" />
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<application
android:label="@string/app_name"
android:icon="@drawable/ic_printservice"
android:allowBackup="true"
android:supportsRtl="true">
<service android:name="com.android.bips.BuiltInPrintService"
android:exported="true"
android:permission="android.permission.BIND_PRINT_SERVICE">
<intent-filter>
<action android:name="android.printservice.PrintService" />
</intent-filter>
<meta-data
android:name="android.printservice"
android:resource="@xml/printservice" />
</service>
<service android:name="com.android.bips.render.PdfRenderService"
android:exported="false"
android:isolatedProcess="true">
<intent-filter>
<action android:name="com.android.bips.render.PdfRenderService" />
</intent-filter>
</service>
<activity
android:name="com.android.bips.ui.MoreOptionsActivity"
android:theme="@android:style/Theme.DeviceDefault.Settings"
android:configChanges="orientation|screenSize"
android:exported="true"
android:permission="android.permission.START_PRINT_SERVICE_CONFIG_ACTIVITY" />
<activity
android:name="com.android.bips.ui.AddPrintersActivity"
android:label="@string/title_activity_add_printer"
android:theme="@android:style/Theme.DeviceDefault.Settings"
android:excludeFromRecents="true"
android:exported="true"
android:configChanges="orientation|keyboardHidden|screenSize"
android:permission="android.permission.START_PRINT_SERVICE_CONFIG_ACTIVITY" />
<activity
android:name="com.android.bips.ImagePrintActivity"
android:label="@string/print"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:exported="true"
android:configChanges="keyboardHidden|orientation|screenSize">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
</activity>
<activity
android:name="com.android.bips.PdfPrintActivity"
android:label="@string/print"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:exported="true"
android:configChanges="keyboardHidden|orientation|screenSize">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="application/pdf" />
</intent-filter>
</activity>
</application>
</manifest>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xiongdayong/BuiltInPrintService.git
[email protected]:xiongdayong/BuiltInPrintService.git
xiongdayong
BuiltInPrintService
BuiltInPrintService
master

搜索帮助