mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-13 17:51:57 +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
|
@Override
|
||||||
public File getDatabasePath(String name) {
|
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() {
|
private void createBillingAndCheckout() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue