1// Signature format: 4.0
2package androidx.lifecycle {
3
4  public class LifecycleService extends android.app.Service implements androidx.lifecycle.LifecycleOwner {
5    ctor public LifecycleService();
6    method public androidx.lifecycle.Lifecycle getLifecycle();
7    method @CallSuper public android.os.IBinder? onBind(android.content.Intent);
8    method @CallSuper public void onStart(android.content.Intent?, int);
9  }
10
11  public class ServiceLifecycleDispatcher {
12    ctor public ServiceLifecycleDispatcher(androidx.lifecycle.LifecycleOwner);
13    method public androidx.lifecycle.Lifecycle getLifecycle();
14    method public void onServicePreSuperOnBind();
15    method public void onServicePreSuperOnCreate();
16    method public void onServicePreSuperOnDestroy();
17    method public void onServicePreSuperOnStart();
18  }
19
20}
21
22