public class MyIntentService extends IntentService {
HttpURLConnection connection;
InputStream inputStream;
public MyIntentService(){
super("anyway");
}
public MyIntentService(String name) {
super(name);
}
<service android:name=".MyIntentService"/>