I have a Android application that opens camera and this application works well on Android 9 at NXP IMX6. I tryed open SC200E development kit camera using this same application and doesn’t work, Android framework Camera2 doesn’t seems any camera when try list it:
CameraManager manager = (CameraManager) activity.getSystemService(Context.CAMERA_SERVICE);
try {
for (String cameraId : manager.getCameraIdList()) {
...
Are there any issue with this Snapdragon archtecture to get camera working, because I saw at Quectel source code that camera application used isn’t AOSP camera application, but SnapdragonCamera application that source code is inside UM.9.15/vendor/codeaurora/packages/apps.
I installed manually Camera Pixel apk from Google that doesn’t work too, the camera can’t be used using default Android framework? Are there any documentation that shows how use the camera using my own application?