I am getting an Activity not found exception while trying to start a service. I have the service registered in the Manifest. Adding what I think is the relevant code and the Log
GPSService is a service. It is not an Activity. You cant do as
GPSService
getActivity().startActivity(intent);
instead of do startService(intent);
startService(intent);
For more information refer Docs