mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-05-23 22:27:15 +00:00
add debug logging to database file name
This commit is contained in:
parent
f7d3981eec
commit
0d76a75b3e
1 changed files with 3 additions and 1 deletions
|
|
@ -313,7 +313,9 @@ public class HabiticaApplication extends MultiDexApplication {
|
|||
|
||||
@Override
|
||||
public File getDatabasePath(String name) {
|
||||
return new File(getExternalFilesDir(null), "HabiticaDatabase/" + name);
|
||||
File dbFile = new File(getExternalFilesDir(null), "HabiticaDatabase/" + name);
|
||||
Crashlytics.setString("Database File", dbFile.getAbsolutePath());
|
||||
return dbFile;
|
||||
}
|
||||
|
||||
private void createBillingAndCheckout() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue