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
In the logcat I noticed this W BroadcastQueue: Background execution not allowed: receiving Intent { act=com.zzzmode.appopsx.action.SERVER_CONNECTED flg=0x10 (has extras) } to com.zzzmode.appopsx/.ServerStatusChangeReceiver
It seems AppopsX is using implicit broadcast to communicate between receiver and LifecycleAgent, but they are blocked for apps targeting Oreo, and AppopsX is indeed targeting Oreo.
To fix this, makeintent need to add explicit ComponentName.
The text was updated successfully, but these errors were encountered:
In the logcat I noticed this
W BroadcastQueue: Background execution not allowed: receiving Intent { act=com.zzzmode.appopsx.action.SERVER_CONNECTED flg=0x10 (has extras) } to com.zzzmode.appopsx/.ServerStatusChangeReceiver
It seems AppopsX is using implicit broadcast to communicate between receiver and LifecycleAgent, but they are blocked for apps targeting Oreo, and AppopsX is indeed targeting Oreo.
To fix this, makeintent need to add explicit ComponentName.
The text was updated successfully, but these errors were encountered: