Use neo4j on an Android device

I am trying to create a database on my Android device using NEO4J. But the application crashes.

 String extStorageDirectory = Environment.getExternalStorageDirectory().toString();
 GraphDatabaseService graphDB=new GraphDatabaseFactory().newEmbeddedDatabase(extStorageDirectory);

I added permissions to write to external storage.

What is the reason? Is it even possible to create a neo4j database on an Android device?

+5
source share
1 answer

The news Michael hinted at has just been released: Neo4j Mobile for Android v0.1. It is still in incubation, and we welcome your feedback.

More details here: http://blog.neo4j.org/2013/05/new-incubator-project-neo4j-mobile-for.html

+5
source

All Articles