mirror of
https://github.com/kiwix/kiwix-android.git
synced 2025-09-20 18:48:16 -04:00
Fixed: PlayStore reported an error for Encyclopédie médicale WikiMed app.
* Fixed where restarting app was not working on Android 11 and above.
This commit is contained in:
parent
b678e69e9d
commit
4169a79eaf
@ -214,7 +214,10 @@ open class ErrorActivity : BaseActivity() {
|
||||
}.toString()
|
||||
|
||||
open fun restartApp() {
|
||||
startActivity(packageManager.getLaunchIntentForPackage(packageName))
|
||||
val restartAppIntent = packageManager.getLaunchIntentForPackage(packageName)?.apply {
|
||||
addFlags(Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK)
|
||||
}
|
||||
startActivity(restartAppIntent)
|
||||
finish()
|
||||
killCurrentProcess()
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user