You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got a few crash reports with this issue "Unable to create application: sqlite.SQLiteDatabaseLockedException: database is locked" initializing HyperLog library.
The initialization code is situated in an extension of Application class and looks like this:
HyperLog.initialize(this, 3 * LockerData.LIMIT_MAX); // default 3 days
if (BuildConfig.DEBUG_MODE) {
HyperLog.setLogLevel(Log.DEBUG);
} else {
HyperLog.setLogLevel(Log.ASSERT);
}
Here is a full crash log from Firebase:
Caused by android.database.sqlite.SQLiteDatabaseLockedException
database is locked (code 5): , while compiling: PRAGMA journal_mode ################################################################# Error Code : 5 (SQLITE_BUSY) Caused By : The database file is locked. (database is locked (code 5): , while compiling: PRAGMA journal_mode) #################################################################
Hi there!
I got a few crash reports with this issue "Unable to create application: sqlite.SQLiteDatabaseLockedException: database is locked" initializing HyperLog library.
The initialization code is situated in an extension of Application class and looks like this:
Here is a full crash log from Firebase:
Please advice, what can be done here to fix the issue? Is it some issue of the library itself or a misplaced configuration?
The text was updated successfully, but these errors were encountered: