Files
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

97 lines
3.2 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.UserHandle;
import android.util.Log;
import androidx.annotation.Nullable;
import com.google.common.base.Preconditions;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
@TargetApi(24)
/* loaded from: classes3.dex */
public final class zzco {
@Nullable
private static final Method zza = zzc();
@Nullable
private static final Method zzb = zzb();
private final JobScheduler zzc;
private static int zza() {
Method method = zzb;
if (method != null) {
try {
Integer num = (Integer) method.invoke(UserHandle.class, new Object[0]);
if (num != null) {
return num.intValue();
}
return 0;
} catch (IllegalAccessException | InvocationTargetException e) {
if (Log.isLoggable("JobSchedulerCompat", 6)) {
Log.e("JobSchedulerCompat", "myUserId invocation illegal", e);
}
}
}
return 0;
}
private final int zza(JobInfo jobInfo, String str, int i, String str2) {
Method method = zza;
if (method != null) {
try {
Integer num = (Integer) method.invoke(this.zzc, jobInfo, str, Integer.valueOf(i), str2);
if (num != null) {
return num.intValue();
}
return 0;
} catch (IllegalAccessException | InvocationTargetException e) {
Log.e(str2, "error calling scheduleAsPackage", e);
}
}
return this.zzc.schedule(jobInfo);
}
public static int zza(Context context, JobInfo jobInfo, String str, String str2) {
JobScheduler jobScheduler = (JobScheduler) Preconditions.checkNotNull((JobScheduler) context.getSystemService("jobscheduler"));
if (zza == null || context.checkSelfPermission("android.permission.UPDATE_DEVICE_STATS") != 0) {
return jobScheduler.schedule(jobInfo);
}
return new zzco(jobScheduler).zza(jobInfo, str, zza(), str2);
}
@Nullable
private static Method zzb() {
try {
return UserHandle.class.getDeclaredMethod("myUserId", new Class[0]);
} catch (NoSuchMethodException unused) {
if (!Log.isLoggable("JobSchedulerCompat", 6)) {
return null;
}
Log.e("JobSchedulerCompat", "No myUserId method available");
return null;
}
}
@Nullable
private static Method zzc() {
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 zzco(JobScheduler jobScheduler) {
this.zzc = jobScheduler;
}
}