Skip to content
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 API 28+ (OREO and Above) #225

Open
jhilland opened this issue Sep 21, 2020 · 0 comments
Open

Android API 28+ (OREO and Above) #225

jhilland opened this issue Sep 21, 2020 · 0 comments

Comments

@jhilland
Copy link

jhilland commented Sep 21, 2020

Android began limiting the types of intent actions that can be invoked from a background service. Implicit Intent Actions (such as ACTION_POWER_CONNECTED) cannot be registered within the AndroidManifest.xml file.

You must now manually register your implicit Intent Actions programmatically.

i.e.

context.resgisterReceiver(yourBroadcastReceiver, new IntentFilter("Implicit.Intent.Action));

This would be great if Transfuse handled within its impl of BroadcastReceivers/IntentFilters.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant