我能够通过 Android 的 USB Host API 获得与设备通信的权限。
private static final String ACTION_USB_PERMISSION = "com.android.example.USB_PERMISSION";
protected void execute(Context ctxt) {
UsbManager manager = (UsbManager) viewer.getSystemService(Context.USB_SERVICE);
HashMap<String, UsbDevice> deviceList = manager.getDeviceList();
UsbDevice d = null;
for (String s : deviceList.keySet()) {
d = deviceList.get(s);
}
PendingIntent mPermissionIntent = PendingIntent.getBroadcast(ctxt, 0, new Intent(ACTION_USB_PERMISSION), 0);
IntentFilter filter = new IntentFilter(ACTION_USB_PERMISSION);
viewer.registerReceiver(mUsbReceiver, filter);
manager.requestPermission(d, mPermissionIntent);
}
private final BroadcastReceiver mUsbReceiver = new BroadcastReceiver() {
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
if (ACTION_USB_PERMISSION.equals(action)) {
synchronized (this) {
UsbDevice device = (UsbDevice)intent.getParcelableExtra(UsbManager.EXTRA_DEVICE);
if (intent.getBooleanExtra(UsbManager.EXTRA_PERMISSION_GRANTED, false)) {
if(device != null){
Log.d(TAG, "Permission granted!");
}
}
else {
Log.d(TAG, "permission denied for device " + device);
}
}
}
}
};
不幸的是,这并没有授予我的 NDK 代码直接与该设备通信的权限(这是 libusb 所必需的)。有没有办法在没有root的情况下将权限从Java“转移”到NDK?
PS 我最终使用 UNIX 套接字将原始文件描述符从 Java 传输到 Android 本机可执行文件(我在https://github.com/martinmarinov/rtl_tcp_andro-上对项目进行了 GNU 编辑)。对于某些人来说,这会更容易,因为他们可能正在使用 NDK 直接连接设备(而不是第三方应用程序),因此他们在 Java 中使用的指针可能仍然可以被 NDK 访问,而不必弄乱 UNIX插座。