mirror of
https://github.com/kiwix/kiwix-android.git
synced 2025-09-22 03:54:18 -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()
|
}.toString()
|
||||||
|
|
||||||
open fun restartApp() {
|
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()
|
finish()
|
||||||
killCurrentProcess()
|
killCurrentProcess()
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user