I’m developing an Android app that uses IBR-DTN for Android. How can I start the DTN service from IBR-DTN from my application? I haven’t found it in the documentation. I have tried to call the service like this:
Intent new_service = new Intent("de.tubs.ibr.dtn.service.DaemonService");
new_service.setAction("de.tubs.ibr.dtn.action.STARTUP");
this.startService(new_service);
but it does not work.
Abraham.