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:
MohitMaliFtechiz 2024-03-05 21:02:53 +05:30 committed by Kelson
parent b678e69e9d
commit 4169a79eaf

View File

@ -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()
} }