[Issue]
Caused by: android.content.ReceiverCallNotAllowedException:
BroadcastReceiver components are not allowed to register to receive intents
IntentReceiver components are not allowed to register to
receive intents
[Soultion]
Kor : 넘겨주는 context의 값을 context.getApplicationContext() 로 설정 하라.
Eng : public void onReceive(Context context, Intent intent) {
mContext = context.getApplicationContext();