本文主要是介绍[QCM6125][Android13] 默认允许使用usb权限,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
文章目录
- 开发平台基本信息
- 问题描述
- 解决方法
开发平台基本信息
芯片: QCM6125
版本: Android 13
kernel: msm-4.14
问题描述
设备有usb打印机,调用UsbManager进行打印时,会弹框请求使用usb权限;客户要求能够自动授权usb权限,应用打开即可使用。
解决方法
--- a/frameworks/base/core/res/res/values/config.xml
+++ b/frameworks/base/core/res/res/values/config.xml
@@ -2682,7 +2682,7 @@<!-- If true, then we do not ask user for permission for apps to connect to USB devices.Do not set this to true for production devices. Doing so will cause you to fail CTS. -->
- <bool name="config_disableUsbPermissionDialogs">false</bool>
+ <bool name="config_disableUsbPermissionDialogs">true</bool><!-- Activity to handle Usb Device connection in USB Host side. Keeping it to null value willlead into handling it inside system using Intent resolution. Non-null contents will have
这篇关于[QCM6125][Android13] 默认允许使用usb权限的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!