Android Question No Activity found to handle intent HELP

walmo

Active Member
Licensed User
Longtime User
Hi , hope someone can help.
I've gotten this code to use ....
B4X:
    Intent intent = new Intent("com.isp1.block");
    intent.putExtra("macAddress", "00:21:27:b4:42:7b");
    intent.putExtra("block", True);//True   block this mac address access To internet ) ,false, allow this mac address visit internet
    sendBroadcast(intent);
i've tried this(and a lot of different ways) , with no luck
B4X:
Dim int1 As Intent
    int1.Initialize(int1.ACTION_SEND,"com.isp1.block")
    int1.PutExtra("macAddress", "00:21:27:b4:42:7b")
    int1.PutExtra("block", True)
    StartActivity(int1)
getting error
android.content.ActivityNotFoundException: No Activity found to handle Intent
Thanks
 

DonManfred

Expert
Licensed User
Longtime User
Upvote 0
Top