Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
package com.google.android.gms.common.wrappers;
|
||||
|
||||
import android.content.Context;
|
||||
import com.google.android.gms.common.util.PlatformVersion;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public class InstantApps {
|
||||
private static Context zza;
|
||||
private static Boolean zzb;
|
||||
|
||||
public static synchronized boolean isInstantApp(Context context) {
|
||||
Boolean bool;
|
||||
Context applicationContext = context.getApplicationContext();
|
||||
Context context2 = zza;
|
||||
if (context2 != null && (bool = zzb) != null && context2 == applicationContext) {
|
||||
return bool.booleanValue();
|
||||
}
|
||||
zzb = null;
|
||||
if (PlatformVersion.isAtLeastO()) {
|
||||
zzb = Boolean.valueOf(applicationContext.getPackageManager().isInstantApp());
|
||||
} else {
|
||||
try {
|
||||
context.getClassLoader().loadClass("com.google.android.instantapps.supervisor.InstantAppsRuntime");
|
||||
zzb = true;
|
||||
} catch (ClassNotFoundException unused) {
|
||||
zzb = false;
|
||||
}
|
||||
}
|
||||
zza = applicationContext;
|
||||
return zzb.booleanValue();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,88 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
package com.google.android.gms.common.wrappers;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public class Wrappers {
|
||||
private static final Wrappers zza = new Wrappers();
|
||||
private PackageManagerWrapper zzb = null;
|
||||
|
||||
public static PackageManagerWrapper packageManager(Context context) {
|
||||
return zza.zza(context);
|
||||
}
|
||||
|
||||
public final synchronized PackageManagerWrapper zza(Context context) {
|
||||
if (this.zzb == null) {
|
||||
if (context.getApplicationContext() != null) {
|
||||
context = context.getApplicationContext();
|
||||
}
|
||||
this.zzb = new PackageManagerWrapper(context);
|
||||
}
|
||||
return this.zzb;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user