BasePreferences.kt 950 B

123456789101112131415161718192021222324252627
  1. package eu.kanade.domain.base
  2. import android.content.Context
  3. import eu.kanade.tachiyomi.R
  4. import eu.kanade.tachiyomi.util.system.isPreviewBuildType
  5. import eu.kanade.tachiyomi.util.system.isReleaseBuildType
  6. import tachiyomi.core.preference.PreferenceStore
  7. class BasePreferences(
  8. val context: Context,
  9. private val preferenceStore: PreferenceStore,
  10. ) {
  11. fun downloadedOnly() = preferenceStore.getBoolean("pref_downloaded_only", false)
  12. fun incognitoMode() = preferenceStore.getBoolean("incognito_mode", false)
  13. fun extensionInstaller() = ExtensionInstallerPreference(context, preferenceStore)
  14. fun acraEnabled() = preferenceStore.getBoolean("acra.enable", isPreviewBuildType || isReleaseBuildType)
  15. enum class ExtensionInstaller(val titleResId: Int) {
  16. LEGACY(R.string.ext_installer_legacy),
  17. PACKAGEINSTALLER(R.string.ext_installer_packageinstaller),
  18. SHIZUKU(R.string.ext_installer_shizuku),
  19. }
  20. }