Hello,
I'm working on development of OpenLiveStacker open-source app and it supports ASI cameras. It opens huge opportunities.
It is written mostly in C++ and small UI wrapper around it in Java.
There are two critical issues that cause major headache for me as developer:
- Official SDK version that is downloadable from web site isn't up to date and does not allow to access the device under Android 10/11 due to different permission model. Replacing libASICamera.so, libusb-1.0.so and libzwo_camera by ones that are in ASICAP APK do work - but they aren't released as part of SDK.
- libASICamera.so is linked with
libstdc++.so
:
$ readelf -ASISDK_ANDROID/CameraSDK/libs/arm64-v8a/libASICamera2.so ... 0x0000000000000001 (NEEDED) Shared library: [libstdc++.so]
Since modern NDK uses libc++ any use of RTTI fail - dynamic_cast
or exception handling does not work. If I want to use ASI SDK on android I basically need to limit myself to "C with classes". Thankfully I could do this for specific driver since I load it dynamically and it does not ruin main app. But in reality it is actually disaster...
And final important issues that is actually root cause:
The original SDK is released under MIT license (present in SDK files) but source code isn't provided. If I have had access to the source code I could just rebuild one for the device and situation I need. But without source code I'm greatly limited in abilities to do anything.