Ladislav Heller

Results 64 comments of Ladislav Heller

@msmeissn @hfiguiere @ndim Maybe this way it might work: https://github.com/libusb/libusb/tree/master/android As you can see, they just prepared _jni/*.mk_ files (basically a tiny [build files](https://developer.android.com/ndk/guides/android_mk) for Android builds). Everything else is...

@msmeissn @hfiguiere @ndim Update: As I wrote in first comment, there is one old unofficial port. It has an already prepared Android.mk build file: https://github.com/JohnChu/Snoopy/blob/master/jni/libgphoto2/Android.mk Using the above build file...

@msmeissn Can u pls send me the list off **all** external libraries/dependencies of gphoto2/libgphoto2 ? I mean like libusb, libjpeg, etc. Thank you. Ladislav

@msmeissn Porting to Android seems a little bit more complex, because of the libusb1 dependency and Android's security. The libusb1 library however **exists** for Android, but because of Android's security...

> Have you checked whether loading `*.so` files via `libltdl` works on Android? If not, you have a significant amount of rewriting to do, both for libgphoto2 loading camera drivers...

> > > Have you checked whether loading `*.so` files via `libltdl` works on Android? If not, you have a significant amount of rewriting to do, both for libgphoto2 loading...

An intermediate status report: I was able to build libltdl for Android. Now I am going to try to modify libgphoto2 to be able to work with the above mentioned...

@ndim @msmeissn Hello Guys, maybe a dumb question but just to be sure: To get the **libgphoto2.so** shared library I need to put together and build **all** the *.c source...

> No. > > Not having found such a description, I have added it to [`HACKING.md`](https://github.com/gphoto/libgphoto2/blob/master/HACKING.md#source-repository-directory-structure). > > It certainly is impossible to just link all camlibs and iolibs into...

@ndim @msmeissn Slowly, but it goes well. Now I was able to build **libgphoto2-port** library. What is sometimes really hard to solve is the autoconf/automake which is not supported in...