bg_launcher
一个 Flutter 插件,可将后台 Android 应用带到前台(仅限 Android)
从后台启动活动的限制
运行 Android 10 或更高版本的应用只能在满足以下一个或多个条件时启动活动
- 要使应用正常工作,请尝试添加
SYSTEM_ALERT_WINDOW权限并由用户授予,有关更多信息,请在此处查看 background-starts#exceptions
入门
请查看示例文件夹以获得更清晰的示例
/// `extras` & `action` are useful if you want to determine
/// what you will do when you bring the app from background
/// you can use `receive_intent` package and filter them with
/// the action & extras to show your own UI/ logic ...
BgLauncher.bringAppToForeground(
action: 'FBI-OPEN-UP',
extras: 'https://youtu.be/dQw4w9WgXcQ',
);