package org.bbs.apklauncher.api; import android.app.IntentService; import android.app.Service; public abstract class Base_Service extends Service { private static final String TAG = Base_Service.class.getSimpleName(); // tag_start:IntentService // 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; } }