-
Notifications
You must be signed in to change notification settings - Fork 31
Description
Hi @thrixton
There is also an official Canon native library for Android shipped with their Canon Camera Connect application.
When you get the APK file and list the content with Android aapt tool, like this:
aapt.exe list jp.co.canon.ic.eos.eosremote.apk
the above command produces an output where you can find:
lib/armeabi/libEDSDKCore.so
So we have an official Android SDK native library, which also can be used from Xamarin and .NET
I started to create a Xamarin.Android C# wrapper class around that library, since the static method names are more or less identical to the ones in Canon SDK for Windows.
The rest I described in this forum topic. There is also a list of static method names and signatures used in that native library. I have a problem with enumerating my Camera device connected to smartphone. Maybe you can figure out, what is wrong there.