AppMeasurementService

public final class AppMeasurementService extends Service

An Service used by FirebaseAnalytics. It will only be used when the service is correctly declared in AndroidManifest.xml:

<manifest>
   <application>
     <!-- ... -->

     <service android:name="com.google.android.gms.measurement.AppMeasurementService"
         android:enabled="true"
         android:exported="false"/>

     <!-- ... -->
   </application>
 </manifest>
 

Inherited Constant Summary

Public Constructor Summary

Public Method Summary

IBinder
onBind(Intent intent)
void
void
void
onRebind(Intent intent)
int
onStartCommand(Intent intent, int flags, int startId)
boolean
onUnbind(Intent intent)

Inherited Method Summary

Public Constructors

public AppMeasurementService ()

Public Methods

public IBinder onBind (Intent intent)

public void onCreate ()

public void onDestroy ()

public void onRebind (Intent intent)

public int onStartCommand (Intent intent, int flags, int startId)

public boolean onUnbind (Intent intent)