Hi,
Vertx requires java 1.7 which is not available on android.
Vertx use NIO unless there is an equivalent API in android writing core or platform is near impossible.
I will sugest you use raspberry pi. Install vertx on it and you are good.
You can attach whatever sensor you need.
My view.
Rgd
> --
> You received this message because you are subscribed to the Google Groups "vert.x" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to vertx+un...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
Another option is to bridge the event bus to java client and wrap that as jar in your android app. I suspect a java websocket lib will be needed.
I have wanted to do this for long. But little time.
Or use the provided javascript eventbus bridge in an HTML5 app. Wrap it in apk using phonegap. I guess this is not acceptable due to your use case.
I want module deployment without being at the devices, local event bus for module decoupling and async programming style for ease of use.
<repositories> <repository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> <repository> <id>goodow-realtime</id> <name>Goodow Realtime Maven Repository</name> <url>https://raw.github.com/goodow/maven/master/repositories/realtime/</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories>
<dependency>
<groupId>com.goodow.realtime</groupId> <artifactId>realtime-android</artifactId>
<version>0.5.0-SNAPSHOT</version>
</dependency>Hey i,
This is awesome will check it out once I am with my computer.
Thanks a lot.
Rgds