I have a service with an following constructor:
public ShimmerService(Context context, Handler handler) { mHandler = handler; }
I want
You need to have a no-argument constructor for your Service class, otherwise the systems doesn't know how to instantiate it.