jimu-decompiled/sources/com/google/android/gms/internal/measurement/zzdi.java
2025-05-13 19:24:51 +02:00

91 lines
3.1 KiB
Java

package com.google.android.gms.internal.measurement;
import android.annotation.TargetApi;
import android.app.job.JobInfo;
import android.app.job.JobScheduler;
import android.content.Context;
import android.os.Build;
import android.os.UserHandle;
import android.util.Log;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
@TargetApi(24)
/* loaded from: classes.dex */
public final class zzdi {
private static final Method b = a();
private static final Method c = b();
private static volatile zzdk d = zzdj.a;
private final JobScheduler a;
private zzdi(JobScheduler jobScheduler) {
this.a = jobScheduler;
}
private static Method a() {
if (Build.VERSION.SDK_INT < 24) {
return null;
}
try {
return JobScheduler.class.getDeclaredMethod("scheduleAsPackage", JobInfo.class, String.class, Integer.TYPE, String.class);
} catch (NoSuchMethodException unused) {
if (!Log.isLoggable("JobSchedulerCompat", 6)) {
return null;
}
Log.e("JobSchedulerCompat", "No scheduleAsPackage method available, falling back to schedule");
return null;
}
}
private static Method b() {
if (Build.VERSION.SDK_INT >= 24) {
try {
return UserHandle.class.getDeclaredMethod("myUserId", null);
} catch (NoSuchMethodException unused) {
if (Log.isLoggable("JobSchedulerCompat", 6)) {
Log.e("JobSchedulerCompat", "No myUserId method available");
}
}
}
return null;
}
private static int c() {
Method method = c;
if (method != null) {
try {
return ((Integer) method.invoke(null, new Object[0])).intValue();
} catch (IllegalAccessException | InvocationTargetException e) {
if (Log.isLoggable("JobSchedulerCompat", 6)) {
Log.e("JobSchedulerCompat", "myUserId invocation illegal", e);
}
}
}
return 0;
}
static final /* synthetic */ boolean d() {
return false;
}
private final int a(JobInfo jobInfo, String str, int i, String str2) {
Method method = b;
if (method != null) {
try {
return ((Integer) method.invoke(this.a, jobInfo, str, Integer.valueOf(i), str2)).intValue();
} catch (IllegalAccessException | InvocationTargetException e) {
Log.e(str2, "error calling scheduleAsPackage", e);
}
}
return this.a.schedule(jobInfo);
}
public static int a(Context context, JobInfo jobInfo, String str, String str2) {
JobScheduler jobScheduler = (JobScheduler) context.getSystemService("jobscheduler");
if (b != null && d.a() && context.checkSelfPermission("android.permission.UPDATE_DEVICE_STATS") == 0) {
return new zzdi(jobScheduler).a(jobInfo, str, c(), str2);
}
return jobScheduler.schedule(jobInfo);
}
}