Skip to content

Commit

Permalink
[fix] sets workManagerConfiguration correctly.
Browse files Browse the repository at this point in the history
  • Loading branch information
coderPaddyS committed Dec 20, 2024
1 parent 48e37c8 commit 9433beb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions app/src/main/java/org/secuso/privacyfriendly2048/PF2048.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
*/
package org.secuso.privacyfriendly2048

import android.util.Log
import androidx.core.content.ContextCompat
import androidx.work.Configuration
import org.secuso.pfacore.application.BackupDatabaseConfig
import org.secuso.pfacore.application.SQLiteHelperConfig
import org.secuso.pfacore.ui.PFApplication
Expand All @@ -32,4 +34,7 @@ class PF2048 : PFApplication() {
override val mainActivity = MainActivity::class.java
override val database: BackupDatabaseConfig
get() = SQLiteHelperConfig(this, PFASQLiteHelper.DATABASE_NAME)

override val workManagerConfiguration: Configuration
get() = Configuration.Builder().setMinimumLoggingLevel(Log.INFO).build()
}
2 changes: 1 addition & 1 deletion libs/pfa-core

0 comments on commit 9433beb

Please sign in to comment.