public abstract class android.app.Service extends android.content.ContextWrapper implements android.content.ComponentCallbacks2
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: android.app.Service
  super_class: android.content.ContextWrapper
{
  private static final java.lang.String TAG;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "Service"

  public static final int STOP_FOREGROUND_REMOVE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public static final int STOP_FOREGROUND_DETACH;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  public static final int START_CONTINUATION_MASK;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 15

  public static final int START_STICKY_COMPATIBILITY;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final int START_STICKY;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public static final int START_NOT_STICKY;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  public static final int START_REDELIVER_INTENT;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 3

  public static final int START_TASK_REMOVED_COMPLETE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1000

  public static final int START_FLAG_REDELIVERY;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public static final int START_FLAG_RETRY;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  private android.app.ActivityThread mThread;
    descriptor: Landroid/app/ActivityThread;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String mClassName;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private android.os.IBinder mToken;
    descriptor: Landroid/os/IBinder;
    flags: (0x0002) ACC_PRIVATE

  private android.app.Application mApplication;
    descriptor: Landroid/app/Application;
    flags: (0x0002) ACC_PRIVATE

  private android.app.IActivityManager mActivityManager;
    descriptor: Landroid/app/IActivityManager;
    flags: (0x0002) ACC_PRIVATE

  private boolean mStartCompatibility;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.app.Service this
         0: .line 332
            aload 0 /* this */
            aconst_null
            invokespecial android.content.ContextWrapper.<init>:(Landroid/content/Context;)V
         1: .line 780
            aload 0 /* this */
            aconst_null
            putfield android.app.Service.mThread:Landroid/app/ActivityThread;
         2: .line 781
            aload 0 /* this */
            aconst_null
            putfield android.app.Service.mClassName:Ljava/lang/String;
         3: .line 782
            aload 0 /* this */
            aconst_null
            putfield android.app.Service.mToken:Landroid/os/IBinder;
         4: .line 783
            aload 0 /* this */
            aconst_null
            putfield android.app.Service.mApplication:Landroid/app/Application;
         5: .line 784
            aload 0 /* this */
            aconst_null
            putfield android.app.Service.mActivityManager:Landroid/app/IActivityManager;
         6: .line 785
            aload 0 /* this */
            iconst_0
            putfield android.app.Service.mStartCompatibility:Z
         7: .line 333
            return
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Landroid/app/Service;

  public final android.app.Application getApplication();
    descriptor: ()Landroid/app/Application;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.app.Service this
         0: .line 337
            aload 0 /* this */
            getfield android.app.Service.mApplication:Landroid/app/Application;
            areturn
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/app/Service;

  public void onCreate();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // android.app.Service this
         0: .line 344
            return
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/app/Service;

  public void onStart(android.content.Intent, int);
    descriptor: (Landroid/content/Intent;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=3, args_size=3
        start local 0 // android.app.Service this
        start local 1 // android.content.Intent intent
        start local 2 // int startId
         0: .line 351
            return
        end local 2 // int startId
        end local 1 // android.content.Intent intent
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Landroid/app/Service;
            0    1     1   intent  Landroid/content/Intent;
            0    1     2  startId  I
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
         Name  Flags
      intent   
      startId  

  public int onStartCommand(android.content.Intent, int, int);
    descriptor: (Landroid/content/Intent;II)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // android.app.Service this
        start local 1 // android.content.Intent intent
        start local 2 // int flags
        start local 3 // int startId
         0: .line 497
            aload 0 /* this */
            aload 1 /* intent */
            iload 3 /* startId */
            invokevirtual android.app.Service.onStart:(Landroid/content/Intent;I)V
         1: .line 498
            aload 0 /* this */
            getfield android.app.Service.mStartCompatibility:Z
            ifeq 2
            iconst_0
            goto 3
      StackMap locals:
      StackMap stack:
         2: iconst_1
      StackMap locals:
      StackMap stack: int
         3: ireturn
        end local 3 // int startId
        end local 2 // int flags
        end local 1 // android.content.Intent intent
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Landroid/app/Service;
            0    4     1   intent  Landroid/content/Intent;
            0    4     2    flags  I
            0    4     3  startId  I
    MethodParameters:
         Name  Flags
      intent   
      flags    
      startId  

  public void onDestroy();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // android.app.Service this
         0: .line 508
            return
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/app/Service;

  public void onConfigurationChanged(android.content.res.Configuration);
    descriptor: (Landroid/content/res/Configuration;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // android.app.Service this
        start local 1 // android.content.res.Configuration newConfig
         0: .line 511
            return
        end local 1 // android.content.res.Configuration newConfig
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Landroid/app/Service;
            0    1     1  newConfig  Landroid/content/res/Configuration;
    MethodParameters:
           Name  Flags
      newConfig  

  public void onLowMemory();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // android.app.Service this
         0: .line 514
            return
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/app/Service;

  public void onTrimMemory(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // android.app.Service this
        start local 1 // int level
         0: .line 517
            return
        end local 1 // int level
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Landroid/app/Service;
            0    1     1  level  I
    MethodParameters:
       Name  Flags
      level  

  public abstract android.os.IBinder onBind(android.content.Intent);
    descriptor: (Landroid/content/Intent;)Landroid/os/IBinder;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
        Name  Flags
      intent  

  public boolean onUnbind(android.content.Intent);
    descriptor: (Landroid/content/Intent;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // android.app.Service this
        start local 1 // android.content.Intent intent
         0: .line 557
            iconst_0
            ireturn
        end local 1 // android.content.Intent intent
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Landroid/app/Service;
            0    1     1  intent  Landroid/content/Intent;
    MethodParameters:
        Name  Flags
      intent  

  public void onRebind(android.content.Intent);
    descriptor: (Landroid/content/Intent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // android.app.Service this
        start local 1 // android.content.Intent intent
         0: .line 572
            return
        end local 1 // android.content.Intent intent
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Landroid/app/Service;
            0    1     1  intent  Landroid/content/Intent;
    MethodParameters:
        Name  Flags
      intent  

  public void onTaskRemoved(android.content.Intent);
    descriptor: (Landroid/content/Intent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // android.app.Service this
        start local 1 // android.content.Intent rootIntent
         0: .line 585
            return
        end local 1 // android.content.Intent rootIntent
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Landroid/app/Service;
            0    1     1  rootIntent  Landroid/content/Intent;
    MethodParameters:
            Name  Flags
      rootIntent  

  public final void stopSelf();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.app.Service this
         0: .line 594
            aload 0 /* this */
            iconst_m1
            invokevirtual android.app.Service.stopSelf:(I)V
         1: .line 595
            return
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Landroid/app/Service;

  public final void stopSelf(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // android.app.Service this
        start local 1 // int startId
         0: .line 603
            aload 0 /* this */
            getfield android.app.Service.mActivityManager:Landroid/app/IActivityManager;
            ifnonnull 2
         1: .line 604
            return
         2: .line 607
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.app.Service.mActivityManager:Landroid/app/IActivityManager;
         3: .line 608
            new android.content.ComponentName
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield android.app.Service.mClassName:Ljava/lang/String;
            invokespecial android.content.ComponentName.<init>:(Landroid/content/Context;Ljava/lang/String;)V
            aload 0 /* this */
            getfield android.app.Service.mToken:Landroid/os/IBinder;
            iload 1 /* startId */
         4: .line 607
            invokeinterface android.app.IActivityManager.stopServiceToken:(Landroid/content/ComponentName;Landroid/os/IBinder;I)Z
            pop
         5: .line 609
            goto 7
      StackMap locals:
      StackMap stack: android.os.RemoteException
         6: pop
         7: .line 611
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int startId
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Landroid/app/Service;
            0    8     1  startId  I
      Exception table:
        from    to  target  type
           2     5       6  Class android.os.RemoteException
    MethodParameters:
         Name  Flags
      startId  

  public final boolean stopSelfResult(int);
    descriptor: (I)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // android.app.Service this
        start local 1 // int startId
         0: .line 635
            aload 0 /* this */
            getfield android.app.Service.mActivityManager:Landroid/app/IActivityManager;
            ifnonnull 2
         1: .line 636
            iconst_0
            ireturn
         2: .line 639
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.app.Service.mActivityManager:Landroid/app/IActivityManager;
         3: .line 640
            new android.content.ComponentName
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield android.app.Service.mClassName:Ljava/lang/String;
            invokespecial android.content.ComponentName.<init>:(Landroid/content/Context;Ljava/lang/String;)V
            aload 0 /* this */
            getfield android.app.Service.mToken:Landroid/os/IBinder;
            iload 1 /* startId */
         4: .line 639
            invokeinterface android.app.IActivityManager.stopServiceToken:(Landroid/content/ComponentName;Landroid/os/IBinder;I)Z
         5: ireturn
         6: .line 641
      StackMap locals:
      StackMap stack: android.os.RemoteException
            pop
         7: .line 643
            iconst_0
            ireturn
        end local 1 // int startId
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Landroid/app/Service;
            0    8     1  startId  I
      Exception table:
        from    to  target  type
           2     5       6  Class android.os.RemoteException
    MethodParameters:
         Name  Flags
      startId  

  public final void setForeground(boolean);
    descriptor: (Z)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // android.app.Service this
        start local 1 // boolean isForeground
         0: .line 662
            ldc "Service"
            new java.lang.StringBuilder
            dup
            ldc "setForeground: ignoring old API call on "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic android.util.Log.w:(Ljava/lang/String;Ljava/lang/String;)I
            pop
         1: .line 663
            return
        end local 1 // boolean isForeground
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Landroid/app/Service;
            0    2     1  isForeground  Z
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
              Name  Flags
      isForeground  

  public final void startForeground(int, android.app.Notification);
    descriptor: (ILandroid/app/Notification;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // android.app.Service this
        start local 1 // int id
        start local 2 // android.app.Notification notification
         0: .line 695
            aload 0 /* this */
            getfield android.app.Service.mActivityManager:Landroid/app/IActivityManager;
         1: .line 696
            new android.content.ComponentName
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield android.app.Service.mClassName:Ljava/lang/String;
            invokespecial android.content.ComponentName.<init>:(Landroid/content/Context;Ljava/lang/String;)V
            aload 0 /* this */
            getfield android.app.Service.mToken:Landroid/os/IBinder;
            iload 1 /* id */
         2: .line 697
            aload 2 /* notification */
            iconst_0
         3: .line 695
            invokeinterface android.app.IActivityManager.setServiceForeground:(Landroid/content/ComponentName;Landroid/os/IBinder;ILandroid/app/Notification;I)V
         4: .line 698
            goto 6
      StackMap locals:
      StackMap stack: android.os.RemoteException
         5: pop
         6: .line 700
      StackMap locals:
      StackMap stack:
            return
        end local 2 // android.app.Notification notification
        end local 1 // int id
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    7     0          this  Landroid/app/Service;
            0    7     1            id  I
            0    7     2  notification  Landroid/app/Notification;
      Exception table:
        from    to  target  type
           0     4       5  Class android.os.RemoteException
    MethodParameters:
              Name  Flags
      id            
      notification  

  public final void stopForeground(boolean);
    descriptor: (Z)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.app.Service this
        start local 1 // boolean removeNotification
         0: .line 710
            aload 0 /* this */
            iload 1 /* removeNotification */
            ifeq 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack: android.app.Service
         1: iconst_0
      StackMap locals: android.app.Service int
      StackMap stack: android.app.Service int
         2: invokevirtual android.app.Service.stopForeground:(I)V
         3: .line 711
            return
        end local 1 // boolean removeNotification
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    4     0                this  Landroid/app/Service;
            0    4     1  removeNotification  Z
    MethodParameters:
                    Name  Flags
      removeNotification  

  public final void stopForeground(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // android.app.Service this
        start local 1 // int flags
         0: .line 724
            aload 0 /* this */
            getfield android.app.Service.mActivityManager:Landroid/app/IActivityManager;
         1: .line 725
            new android.content.ComponentName
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield android.app.Service.mClassName:Ljava/lang/String;
            invokespecial android.content.ComponentName.<init>:(Landroid/content/Context;Ljava/lang/String;)V
            aload 0 /* this */
            getfield android.app.Service.mToken:Landroid/os/IBinder;
            iconst_0
            aconst_null
            iload 1 /* flags */
         2: .line 724
            invokeinterface android.app.IActivityManager.setServiceForeground:(Landroid/content/ComponentName;Landroid/os/IBinder;ILandroid/app/Notification;I)V
         3: .line 726
            goto 5
      StackMap locals:
      StackMap stack: android.os.RemoteException
         4: pop
         5: .line 728
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int flags
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Landroid/app/Service;
            0    6     1  flags  I
      Exception table:
        from    to  target  type
           0     3       4  Class android.os.RemoteException
    MethodParameters:
       Name  Flags
      flags  

  protected void dump(java.io.FileDescriptor, java.io.PrintWriter, java.lang.String[]);
    descriptor: (Ljava/io/FileDescriptor;Ljava/io/PrintWriter;[Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // android.app.Service this
        start local 1 // java.io.FileDescriptor fd
        start local 2 // java.io.PrintWriter writer
        start local 3 // java.lang.String[] args
         0: .line 745
            aload 2 /* writer */
            ldc "nothing to dump"
            invokevirtual java.io.PrintWriter.println:(Ljava/lang/String;)V
         1: .line 746
            return
        end local 3 // java.lang.String[] args
        end local 2 // java.io.PrintWriter writer
        end local 1 // java.io.FileDescriptor fd
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Landroid/app/Service;
            0    2     1      fd  Ljava/io/FileDescriptor;
            0    2     2  writer  Ljava/io/PrintWriter;
            0    2     3    args  [Ljava/lang/String;
    MethodParameters:
        Name  Flags
      fd      
      writer  
      args    

  public final void attach(android.content.Context, android.app.ActivityThread, java.lang.String, android.os.IBinder, android.app.Application, java.lang.Object);
    descriptor: (Landroid/content/Context;Landroid/app/ActivityThread;Ljava/lang/String;Landroid/os/IBinder;Landroid/app/Application;Ljava/lang/Object;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=7, args_size=7
        start local 0 // android.app.Service this
        start local 1 // android.content.Context context
        start local 2 // android.app.ActivityThread thread
        start local 3 // java.lang.String className
        start local 4 // android.os.IBinder token
        start local 5 // android.app.Application application
        start local 6 // java.lang.Object activityManager
         0: .line 757
            aload 0 /* this */
            aload 1 /* context */
            invokevirtual android.app.Service.attachBaseContext:(Landroid/content/Context;)V
         1: .line 758
            aload 0 /* this */
            aload 2 /* thread */
            putfield android.app.Service.mThread:Landroid/app/ActivityThread;
         2: .line 759
            aload 0 /* this */
            aload 3 /* className */
            putfield android.app.Service.mClassName:Ljava/lang/String;
         3: .line 760
            aload 0 /* this */
            aload 4 /* token */
            putfield android.app.Service.mToken:Landroid/os/IBinder;
         4: .line 761
            aload 0 /* this */
            aload 5 /* application */
            putfield android.app.Service.mApplication:Landroid/app/Application;
         5: .line 762
            aload 0 /* this */
            aload 6 /* activityManager */
            checkcast android.app.IActivityManager
            putfield android.app.Service.mActivityManager:Landroid/app/IActivityManager;
         6: .line 763
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual android.app.Service.getApplicationInfo:()Landroid/content/pm/ApplicationInfo;
            getfield android.content.pm.ApplicationInfo.targetSdkVersion:I
         7: .line 764
            iconst_5
            if_icmpge 8
            iconst_1
            goto 9
      StackMap locals:
      StackMap stack: android.app.Service
         8: iconst_0
         9: .line 763
      StackMap locals: android.app.Service android.content.Context android.app.ActivityThread java.lang.String android.os.IBinder android.app.Application java.lang.Object
      StackMap stack: android.app.Service int
            putfield android.app.Service.mStartCompatibility:Z
        10: .line 765
            return
        end local 6 // java.lang.Object activityManager
        end local 5 // android.app.Application application
        end local 4 // android.os.IBinder token
        end local 3 // java.lang.String className
        end local 2 // android.app.ActivityThread thread
        end local 1 // android.content.Context context
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   11     0             this  Landroid/app/Service;
            0   11     1          context  Landroid/content/Context;
            0   11     2           thread  Landroid/app/ActivityThread;
            0   11     3        className  Ljava/lang/String;
            0   11     4            token  Landroid/os/IBinder;
            0   11     5      application  Landroid/app/Application;
            0   11     6  activityManager  Ljava/lang/Object;
    MethodParameters:
                 Name  Flags
      context          
      thread           
      className        
      token            
      application      
      activityManager  

  public final void detachAndCleanUp();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.app.Service this
         0: .line 772
            aload 0 /* this */
            aconst_null
            putfield android.app.Service.mToken:Landroid/os/IBinder;
         1: .line 773
            return
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Landroid/app/Service;

  final java.lang.String getClassName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0010) ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.app.Service this
         0: .line 776
            aload 0 /* this */
            getfield android.app.Service.mClassName:Ljava/lang/String;
            areturn
        end local 0 // android.app.Service this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/app/Service;
}
SourceFile: "Service.java"
NestMembers:
  android.app.Service$StartArgFlags  android.app.Service$StartResult  android.app.Service$StopForegroundFlags
InnerClasses:
  public abstract StartArgFlags = android.app.Service$StartArgFlags of android.app.Service
  public abstract StartResult = android.app.Service$StartResult of android.app.Service
  public abstract StopForegroundFlags = android.app.Service$StopForegroundFlags of android.app.Service