Skip to content

Commit

Permalink
enable updater by default for all archs
Browse files Browse the repository at this point in the history
  • Loading branch information
qimiko committed Jan 1, 2024
1 parent 30d3c6a commit 1cf63b5
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,7 @@ class PreferenceUtils(private val sharedPreferences: SharedPreferences) {

private fun defaultValueForBooleanKey(key: Key): Boolean {
return when (key) {
Key.UPDATE_AUTOMATICALLY -> {
return LaunchUtils.getApplicationArchitecture() == "armeabi-v7a"
}
Key.RELEASE_CHANNEL -> true
Key.UPDATE_AUTOMATICALLY, Key.RELEASE_CHANNEL -> true
else -> false
}
}
Expand Down

0 comments on commit 1cf63b5

Please sign in to comment.