Straight forward question:
Is an IntentService declared in the Android Manifest as a regular service, or is there another way? It tried searching for it, but I couldn’t find the answer.
Here is the regular Service declaration:
<service
android:name=".NameOfService">
</service>
Thanks
In your manifest you declare a service with
android:name=".Communication", this means that your service class should be located incom.exercise.AndroidClient.CommunicationCheck that the packages are correct. Note that the “.” (dot) refers to the root of your package (ie the package declared in the manifest). So, for example, if your package is
com.exercise.AndroidClientand your service class is undercom.exercise.AndroidClient.services.Communicationyou need to declare the service like this:Or specify the full package: