I am trying to create a database in my android device with NEO4J. But the application crashes.
String extStorageDirectory = Environment.getExternalStorageDirectory().toString();
GraphDatabaseService graphDB=new GraphDatabaseFactory().newEmbeddedDatabase(extStorageDirectory);
I have added permissions for writing to external storage.
What may be the reason? Is it at all possible to create a neo4j database in Android device?