Enable app auto update by default

This commit is contained in:
arkon
2020-03-07 13:11:02 -05:00
parent 8b6268966e
commit 5e9496ef36
3 changed files with 10 additions and 3 deletions

View File

@@ -20,7 +20,14 @@ object Migrations {
if (oldVersion < BuildConfig.VERSION_CODE) {
preferences.lastVersionCode().set(BuildConfig.VERSION_CODE)
if (oldVersion == 0) return false
// Fresh install
if (oldVersion == 0) {
// Set up default app updater task
if (BuildConfig.INCLUDE_UPDATER && preferences.automaticUpdates()) {
UpdaterJob.setupTask(context)
}
return false
}
if (oldVersion < 14) {
// Restore jobs after upgrading to Evernote's job scheduler.