AppMeasurementJobService

public final classAppMeasurementJobServiceextendsJobService

AJobService 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.AppMeasurementJobService"
android:permission= "android.permission.BIND_JOB_SERVICE"
android:enabled= "true"
android:exported= "false" />

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

Inherited Constant Summary

Public Constructor Summary

Public Method Summary

void
void
void
onRebind(Intent intent)
boolean
boolean
boolean
onUnbind(Intent intent)

Inherited Method Summary

Public Constructors

publicAppMeasurementJobService()

Public Methods

public voidonCreate()

public voidonDestroy()

public voidonRebind(Intent intent)

public booleanonStartJob(JobParameters params)

public booleanonStopJob(JobParameters params)

public booleanonUnbind(Intent intent)