Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WARN/ActivityManager(5038): Permission denied: checkComponentPermission

From one application I am (broadcast) sending an intent to a broadcastreceiver of another one. I am getting the error:

WARN/ActivityManager(5038): Permission denied: checkComponentPermission
like image 219
Herschel Avatar asked Aug 08 '11 15:08

Herschel


1 Answers

You need to add permission under your manifest file add these

<receiver android:name=".YourBroadCastReceiverName" android:exported="true"></receiver>
like image 108
Vikalp Patel Avatar answered Nov 11 '22 10:11

Vikalp Patel