Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
package com.google.android.gms.common.util;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.pm.PackageManager;
|
||||
import android.util.Log;
|
||||
import com.google.android.gms.common.GoogleSignatureVerifier;
|
||||
import com.google.android.gms.common.wrappers.Wrappers;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class UidVerifier {
|
||||
private UidVerifier() {
|
||||
}
|
||||
|
||||
public static boolean isGooglePlayServicesUid(Context context, int i) {
|
||||
if (!uidHasPackageName(context, i, "com.google.android.gms")) {
|
||||
return false;
|
||||
}
|
||||
try {
|
||||
return GoogleSignatureVerifier.getInstance(context).isGooglePublicSignedPackage(context.getPackageManager().getPackageInfo("com.google.android.gms", 64));
|
||||
} catch (PackageManager.NameNotFoundException unused) {
|
||||
if (!Log.isLoggable("UidVerifier", 3)) {
|
||||
return false;
|
||||
}
|
||||
Log.d("UidVerifier", "Package manager can't find google play services package, defaulting to false");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public static boolean uidHasPackageName(Context context, int i, String str) {
|
||||
return Wrappers.packageManager(context).zza(i, str);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user