This isn't related to TDBoid but to android itself: you can't create
the store in that location. An android app can only create files and
directories inside its own private "context" path or on external
storage such as sdcard or usb memory (provided it has the required
permission, see
http://developer.android.com/guide/topics/data/data-storage.html
and
http://developer.android.com/reference/android/Manifest.permission.html#WRITE_EXTERNAL_STORAGE).
If you want to write in your'apps context path in the internal memory,
you should do like this:
String _DATABASE = "/tdb/tdboid_db";
String _MODEL_NAME = "tdb_model";
File storeDir = getContext().getFileStreamPath(_DATABASE );
Dataset dataset =
TDBFactory.createDataset(storeDir.getAbsolutePath());
Model model = dataset.getNamedModel(_MODEL_NAME);
Hope this helps, bye!
lorenzo