This is a cache of https://discuss.96boards.org/t/hikey970-and-usb-camera/8713. It is a snapshot of the page at 2024-09-20T11:54:15.284+0000.
Hikey970 and usb camera - HiKey970 - 96Boards Forum

Hikey970 and usb camera

Hello everybody
I have try to connect a camera on the hikey970 board . Under linux it’s works perfectly but under android the camera is detect by the linux kernel but the android systéme doesn’t seems to use it.

//get the camera manager
CameraManager manager = (CameraManager) this.getSystemService(Context.CAMERA_SERVICE);
for (String cameraId : manager.getCameraIdList()) {
//The android camera list is empty…
Logger.log(“CamearId:”+cameraId,true);
}

any ideas