Currently I\'m doing it like this:
DaoMaster.dropAllTables(getDb(), true); DaoMaster.createAllTables(getDb(), true);
but then, when I\'m tr
For now it can be done like that:
for (AbstractDao abstractDao : mDaoSession.getAllDaos()){ abstractDao.deleteAll(); }