Files
iTartanas/itranvias_code/com/google/android.gms/common/wrappers/PackageManagerWrapper.java
T

88 lines
3.5 KiB
Java

package com.google.android.gms.common.wrappers;
import android.app.AppOpsManager;
import android.content.Context;
import android.content.pm.ApplicationInfo;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.graphics.drawable.Drawable;
import android.os.Binder;
import android.os.Process;
import androidx.core.util.Pair;
import com.google.android.gms.common.util.PlatformVersion;
import com.google.errorprone.annotations.ResultIgnorabilityUnspecified;
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
/* JADX INFO: loaded from: classes2.dex */
public class PackageManagerWrapper {
protected final Context zza;
public PackageManagerWrapper(Context context) {
this.zza = context;
}
public int checkCallingOrSelfPermission(String str) {
return this.zza.checkCallingOrSelfPermission(str);
}
@ResultIgnorabilityUnspecified
public int checkPermission(String str, String str2) {
return this.zza.getPackageManager().checkPermission(str, str2);
}
@ResultIgnorabilityUnspecified
public ApplicationInfo getApplicationInfo(String str, int i) throws PackageManager.NameNotFoundException {
return this.zza.getPackageManager().getApplicationInfo(str, i);
}
public CharSequence getApplicationLabel(String str) throws PackageManager.NameNotFoundException {
Context context = this.zza;
return context.getPackageManager().getApplicationLabel(context.getPackageManager().getApplicationInfo(str, 0));
}
@ResultIgnorabilityUnspecified
public Pair<CharSequence, Drawable> getApplicationLabelAndIcon(String str) throws PackageManager.NameNotFoundException {
ApplicationInfo applicationInfo = this.zza.getPackageManager().getApplicationInfo(str, 0);
return Pair.create(this.zza.getPackageManager().getApplicationLabel(applicationInfo), this.zza.getPackageManager().getApplicationIcon(applicationInfo));
}
@ResultIgnorabilityUnspecified
public PackageInfo getPackageInfo(String str, int i) throws PackageManager.NameNotFoundException {
return this.zza.getPackageManager().getPackageInfo(str, i);
}
public boolean isCallerInstantApp() {
String nameForUid;
if (Binder.getCallingUid() == Process.myUid()) {
return InstantApps.isInstantApp(this.zza);
}
if (!PlatformVersion.isAtLeastO() || (nameForUid = this.zza.getPackageManager().getNameForUid(Binder.getCallingUid())) == null) {
return false;
}
return this.zza.getPackageManager().isInstantApp(nameForUid);
}
public final boolean zza(int i, String str) {
if (PlatformVersion.isAtLeastKitKat()) {
try {
AppOpsManager appOpsManager = (AppOpsManager) this.zza.getSystemService("appops");
if (appOpsManager == null) {
throw new NullPointerException("context.getSystemService(Context.APP_OPS_SERVICE) is null");
}
appOpsManager.checkPackage(i, str);
return true;
} catch (SecurityException unused) {
return false;
}
}
String[] packagesForUid = this.zza.getPackageManager().getPackagesForUid(i);
if (str != null && packagesForUid != null) {
for (String str2 : packagesForUid) {
if (str.equals(str2)) {
return true;
}
}
}
return false;
}
}