I need my app to back up and restore the data that is written to SQLite. I followed some internet tutorials but I am not able to copy the data!
String packageName = contexto.getPackageName();
String NOME_BD = "estudos_sql.bd";
String BD_FILEPATH = "/data/data/" + packageName + "/databases/" + NOME_BD;
My problem is that I can not find the database file ( BD_FILEPATH
) even though it is working normally !!! ??? Is it a permissions issue?