Hi there, first thing - are you wanting to embed Neo4j into Android or have the datase run as a server in the cloud and talk to it from an Android client over the network?
For embedding Neo4j into Android, there is https://github.com/neo4j-contrib/neo4j-mobile-android which is on an old Neo4j version and a bit hard to build, but works. For connecting to Neo4j as a client, you can just take Neo4j Server (http://docs.neo4j.org/chunked/stable/rest-api.html), and talk to it using any Java Client library (Apache Commons HTTP is built into Android), see http://stackoverflow.com/questions/4457492/how-do-i-use-the-simple-http-client-in-android for a sample. HTH /peter G: neubauer.peter S: peter.neubauer P: +46 704 106975 L: http://www.linkedin.com/in/neubauer T: @peterneubauer Open Data - @mapillary Open Source - @neo4j Open Future - @coderdojo On Tue, Sep 9, 2014 at 8:56 AM, Jeyaganeshan Jeyatharsini <[email protected]> wrote: > I need to connect neo4j database with android programming... I embed Neo4j > into Java code for testing purpose and I created an interface top of that > for my database access. But I am confusing with that... I am poor at > connecting with application and Neo4j database... Can someone explains how > it can be done with suitable explaination.... > > -- > You received this message because you are subscribed to the Google Groups > "Neo4j" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
