Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,139 @@
|
||||
package com.google.android.gms.common;
|
||||
|
||||
import android.app.PendingIntent;
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.content.pm.PackageManager;
|
||||
import android.net.Uri;
|
||||
import android.text.TextUtils;
|
||||
import com.google.android.gms.common.util.DeviceProperties;
|
||||
import com.google.android.gms.common.wrappers.Wrappers;
|
||||
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 GoogleApiAvailabilityLight {
|
||||
public static final String GOOGLE_PLAY_SERVICES_PACKAGE = "com.google.android.gms";
|
||||
public static final String GOOGLE_PLAY_STORE_PACKAGE = "com.android.vending";
|
||||
static final String TRACKING_SOURCE_DIALOG = "d";
|
||||
static final String TRACKING_SOURCE_NOTIFICATION = "n";
|
||||
public static final int GOOGLE_PLAY_SERVICES_VERSION_CODE = GooglePlayServicesUtilLight.GOOGLE_PLAY_SERVICES_VERSION_CODE;
|
||||
private static final GoogleApiAvailabilityLight zza = new GoogleApiAvailabilityLight();
|
||||
|
||||
GoogleApiAvailabilityLight() {
|
||||
}
|
||||
|
||||
public static GoogleApiAvailabilityLight getInstance() {
|
||||
return zza;
|
||||
}
|
||||
|
||||
public void cancelAvailabilityErrorNotifications(Context context) {
|
||||
GooglePlayServicesUtilLight.cancelAvailabilityErrorNotifications(context);
|
||||
}
|
||||
|
||||
public int getApkVersion(Context context) {
|
||||
return GooglePlayServicesUtilLight.getApkVersion(context);
|
||||
}
|
||||
|
||||
public int getClientVersion(Context context) {
|
||||
return GooglePlayServicesUtilLight.getClientVersion(context);
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
public Intent getErrorResolutionIntent(int i) {
|
||||
return getErrorResolutionIntent(null, i, null);
|
||||
}
|
||||
|
||||
public PendingIntent getErrorResolutionPendingIntent(Context context, int i, int i2) {
|
||||
return getErrorResolutionPendingIntent(context, i, i2, null);
|
||||
}
|
||||
|
||||
public String getErrorString(int i) {
|
||||
return GooglePlayServicesUtilLight.getErrorString(i);
|
||||
}
|
||||
|
||||
@ResultIgnorabilityUnspecified
|
||||
public int isGooglePlayServicesAvailable(Context context) {
|
||||
return isGooglePlayServicesAvailable(context, GOOGLE_PLAY_SERVICES_VERSION_CODE);
|
||||
}
|
||||
|
||||
public boolean isPlayServicesPossiblyUpdating(Context context, int i) {
|
||||
return GooglePlayServicesUtilLight.isPlayServicesPossiblyUpdating(context, i);
|
||||
}
|
||||
|
||||
public boolean isPlayStorePossiblyUpdating(Context context, int i) {
|
||||
return GooglePlayServicesUtilLight.isPlayStorePossiblyUpdating(context, i);
|
||||
}
|
||||
|
||||
public boolean isUninstalledAppPossiblyUpdating(Context context, String str) {
|
||||
return GooglePlayServicesUtilLight.zza(context, str);
|
||||
}
|
||||
|
||||
public boolean isUserResolvableError(int i) {
|
||||
return GooglePlayServicesUtilLight.isUserRecoverableError(i);
|
||||
}
|
||||
|
||||
public void verifyGooglePlayServicesIsAvailable(Context context, int i) throws GooglePlayServicesRepairableException, GooglePlayServicesNotAvailableException {
|
||||
GooglePlayServicesUtilLight.ensurePlayServicesAvailable(context, i);
|
||||
}
|
||||
|
||||
public Intent getErrorResolutionIntent(Context context, int i, String str) {
|
||||
if (i != 1 && i != 2) {
|
||||
if (i != 3) {
|
||||
return null;
|
||||
}
|
||||
Uri uriFromParts = Uri.fromParts("package", "com.google.android.gms", null);
|
||||
Intent intent = new Intent("android.settings.APPLICATION_DETAILS_SETTINGS");
|
||||
intent.setData(uriFromParts);
|
||||
return intent;
|
||||
}
|
||||
if (context != null && DeviceProperties.isWearableWithoutPlayStore(context)) {
|
||||
Intent intent2 = new Intent("com.google.android.clockwork.home.UPDATE_ANDROID_WEAR_ACTION");
|
||||
intent2.setPackage("com.google.android.wearable.app");
|
||||
return intent2;
|
||||
}
|
||||
StringBuilder sb = new StringBuilder("gcore_");
|
||||
sb.append(GOOGLE_PLAY_SERVICES_VERSION_CODE);
|
||||
sb.append("-");
|
||||
if (!TextUtils.isEmpty(str)) {
|
||||
sb.append(str);
|
||||
}
|
||||
sb.append("-");
|
||||
if (context != null) {
|
||||
sb.append(context.getPackageName());
|
||||
}
|
||||
sb.append("-");
|
||||
if (context != null) {
|
||||
try {
|
||||
sb.append(Wrappers.packageManager(context).getPackageInfo(context.getPackageName(), 0).versionCode);
|
||||
} catch (PackageManager.NameNotFoundException unused) {
|
||||
}
|
||||
}
|
||||
String string = sb.toString();
|
||||
Intent intent3 = new Intent("android.intent.action.VIEW");
|
||||
Uri.Builder builderAppendQueryParameter = Uri.parse("market://details").buildUpon().appendQueryParameter("id", "com.google.android.gms");
|
||||
if (!TextUtils.isEmpty(string)) {
|
||||
builderAppendQueryParameter.appendQueryParameter("pcampaignid", string);
|
||||
}
|
||||
intent3.setData(builderAppendQueryParameter.build());
|
||||
intent3.setPackage("com.android.vending");
|
||||
intent3.addFlags(524288);
|
||||
return intent3;
|
||||
}
|
||||
|
||||
public PendingIntent getErrorResolutionPendingIntent(Context context, int i, int i2, String str) {
|
||||
Intent errorResolutionIntent = getErrorResolutionIntent(context, i, str);
|
||||
if (errorResolutionIntent == null) {
|
||||
return null;
|
||||
}
|
||||
return PendingIntent.getActivity(context, i2, errorResolutionIntent, com.google.android.gms.internal.common.zzd.zza | 134217728);
|
||||
}
|
||||
|
||||
public int isGooglePlayServicesAvailable(Context context, int i) {
|
||||
int iIsGooglePlayServicesAvailable = GooglePlayServicesUtilLight.isGooglePlayServicesAvailable(context, i);
|
||||
if (GooglePlayServicesUtilLight.isPlayServicesPossiblyUpdating(context, iIsGooglePlayServicesAvailable)) {
|
||||
return 18;
|
||||
}
|
||||
return iIsGooglePlayServicesAvailable;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user