How is an Intent Service Declared in the Android Manifest?
In your manifest you declare a service with android:name=”.Communication”, this means that your service class should be located in com.exercise.AndroidClient.Communication Check 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.AndroidClient and your … Read more