Image sc600 for camera security

I made an application in NDK R25c compiled on Ubuntu.
I pushed the application on /system/bin. When I launch my application, as it requires the use of the camera, I have a message "libc : Access denied finding property “persist.vendor.camera.privapp.list”

after investication, I need : boot.img, cache.img, dtbo.imf, mdtp.img, system.img, userdata.img, recovery.img, persist.img, vendor.img android 10 which would allow me to lift the security to run my application on the System/bin

Hi,Ladji:
There is no property named persist.vendor.camera.privapp.list
Is your app Android app or written in c language?

my application is totally written in C++.
I think I’ll need to root it

Hi,Ladji:
Better to use Android API to develop your project on Android OS.
Even if you need to write c or c++ lanaguage, you can call your code using jni on Android APP.
Thanks.

i need link libbinder.so for Per-process thread pool for processing requests.

if _LP64
#define HELPER_LIB_PATH “/system/lib64/libbinder.so”
#else
#define HELPER_LIB_PATH “/system/lib/libbinder.so”
#endif

HI,
These two libs are already present.