mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-03 20:07:38 +03:00
Fix in-app update
This commit is contained in:
parent
56a27728b9
commit
d10c6ebd7e
1 changed files with 8 additions and 0 deletions
|
@ -194,6 +194,7 @@ class MainActivity : AbstractActivity(), ServiceConnection.Callback {
|
|||
}
|
||||
|
||||
UpdateAvailability.DEVELOPER_TRIGGERED_UPDATE_IN_PROGRESS -> {
|
||||
Log.d(TAG, "checkUpdate: in progress, status: ${appUpdateInfo.installStatus()}")
|
||||
when (appUpdateInfo.installStatus()) {
|
||||
InstallStatus.DOWNLOADED -> {
|
||||
appUpdateManager.completeUpdate()
|
||||
|
@ -202,6 +203,7 @@ class MainActivity : AbstractActivity(), ServiceConnection.Callback {
|
|||
}
|
||||
|
||||
UpdateAvailability.UPDATE_AVAILABLE -> {
|
||||
Log.d(TAG, "checkUpdate: available")
|
||||
if (appUpdateInfo.isUpdateTypeAllowed(AppUpdateType.FLEXIBLE)) {
|
||||
appUpdateManager.startUpdateFlow(
|
||||
appUpdateInfo,
|
||||
|
@ -218,12 +220,18 @@ class MainActivity : AbstractActivity(), ServiceConnection.Callback {
|
|||
}
|
||||
|
||||
UpdateAvailability.UNKNOWN -> {
|
||||
Log.d(TAG, "checkUpdate: unknown")
|
||||
}
|
||||
}
|
||||
}
|
||||
appUpdateInfoTask.addOnFailureListener {
|
||||
Log.e(TAG, "checkUpdate: ", it)
|
||||
}
|
||||
appUpdateManager.registerListener { state ->
|
||||
if (state.installStatus() == InstallStatus.DOWNLOADED) {
|
||||
appUpdateManager.completeUpdate()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@SuppressLint("NewApi")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue