package org.bbs.apklauncher.api; import android.app.IntentService; import android.app.Service; public abstract class Base_IntentService extends IntentService { private static final String TAG = Base_IntentService.class.getSimpleName(); // tag_start:IntentService public Base_IntentService(String name) { super(name); } // tag_end:IntentService public int getHostIdentifier(String name, String defType, String defPackage){ //do NOT edit this file, auto-generated. int resId = -1; resId = getResources().getIdentifier(name, defType, defPackage); return resId; } }