You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
This would be great if Transfuse handled within its impl of BroadcastReceivers/IntentFilters.
The text was updated successfully, but these errors were encountered: