tags:

views:

516

answers:

1

Has anyone succeeded in running the Java bindings for dbus on Android? All indications point at dbus already running as a process within the Android OS, but there is no official access point for them through the Java interface. Thanks in advance!

A: 

You can try using the dbus-java from the freedesktop project. I don't know if it works on android tough.

David Rabinowitz
Thanks for the suggestion! I'd given that a try, but it requires a JNI implementation of Unix sockets to run. That requires pushing a C library onto Android, which I am not quite sure how to do. I've seen that pushing simple programs is possible, but I haven't seen a full library pushed. Or perhaps I'm just not runinng the make properly.
Moki
You can use TCP instead of unix-sockets, and then you have pure Java library
David Rabinowitz