-
-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Android 14: MissingForegroundServiceTypeException #1093
Comments
<manifest ...>
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<application ...>
<service
android:name="..."
+ android:foregroundServiceType="systemExempted"
android:exported="...">
</service>
</application>
</manifest> https://developer.android.com/about/versions/14/changes/fgs-types-required#system-exempted |
Also needs permission |
I guess I'll downgrade to v0.5.5a then? |
You mean |
|
Originally posted by @Mygod in #962 (comment)
Ref: https://developer.android.com/about/versions/14/changes/fgs-types-required
The text was updated successfully, but these errors were encountered: