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?
source
share