问题描述
- 手机上开发miracast ,连接接收端设备时,无法连接 ,错误日志如下: Log:
-
在手机上开发一个apk,扫描到WifiDisplay的接收设备后,在连接此接收设备时有问题。 系统需要权限 android.permission.CONFIGURE_WIFI_DISPLAY,Log:
D/WifiDisplayAdapter( 2380): requestConnectLocked: address=00:11:7f:45:4e:b1, trusted=false
W/WifiDisplayAdapter( 2380): Ignoring request by an untrusted client to connect to an unknown wifi display: 00:11:7f:45:4e:b1
如上log,检查源码发现trusted为false代表
private boolean canCallerConfigureWifiDisplay(){
return mContext.checkCallingPermission(android.Manifest.permission.CONFIGURE_WIFI_DISPLAY)==PackageManager.PERMISSION_GRANTED;}
返回 false,未获取权限,
请问有什么办法可以连接WifiDisplay接收端设备吗,
时间: 2024-12-31 19:10:06