How to clear the default database in android? I tried the following code but cannot resolve the deleteRealmFile method.
Method 1:
try { Realm.deleteRealmFile(context); //Realm file has been deleted. } catch (Exception ex){ ex.printStackTrace(); //No Realm file to remove. }
I tried to uninstall using the configuration.
Method 2:
try { Realm.deleteRealm(realm.getConfiguration()); //Realm file has been deleted. } catch (Exception ex){ ex.printStackTrace(); //No Realm file to remove. }
but gives an error:
java.lang.IllegalStateException: It not allowed to delete the file associated with an open Realm. Remember to close() all the instances of the Realm before deleting its file.
source share