fix Android BackgroundServiceStartNotAllowedException (#687)
This commit is contained in:
parent
99a50f70dd
commit
789bc8563c
1 changed files with 6 additions and 1 deletions
|
@ -14,7 +14,12 @@ class MainActivity: FlutterActivity() {
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
|
try {
|
||||||
startService(Intent(getBaseContext(), AppClearedService::class.java));
|
startService(Intent(getBaseContext(), AppClearedService::class.java));
|
||||||
|
} catch (e: Exception) {
|
||||||
|
// startService must not be called when app is in background (crashes app)
|
||||||
|
// there is nothing we can do
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue