blob: d3f128a6351c8ddcbca4c90fa4dfaf9c89dd0b68 [file] [log] [blame]
package test.pkg;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
public class TestService extends Service {
@Override
public IBinder onBind(Intent intent) {
return null;
}
}