Skip to content Skip to sidebar Skip to footer

Loading A Service After Booting In Android

I has taken a sample from internet for implementing service that starts automatically after phone boots. But application shows error. Please help me to solve problem thanks in adva

Solution 1:

It's simple.

Your package name is package com.example.newtets;

And manifest expects package com.example.newtest;

So fix the typo, since you're passing com.example.newtets.BootCompletedIntentReceiver class instead

Post a Comment for "Loading A Service After Booting In Android"