How is an Intent Service Declared in the Android Manifest?
问题 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 回答1: 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