SC200E development kit camera app

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?

HI,
Please check the logcat to confirm what issue is happened.

The issue is that manager.getCameraIdList() returns null list, CameraManager can’t find any camera on system.

Any camera application on Playstore can find the cameras, only SnapdragonCamera application that is compiled with Quectel Android can find the cameras.

I need know what SnapdragonCamera does to find the cameras.