what-the-bank/sources/com/huawei/hms/utils/Util.java

251 lines
9.6 KiB
Java

package com.huawei.hms.utils;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.content.pm.ApplicationInfo;
import android.content.pm.PackageItemInfo;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.os.Bundle;
import android.text.TextUtils;
import android.util.AndroidException;
import com.huawei.hms.android.SystemUtils;
import com.huawei.hms.common.PackageConstants;
import com.huawei.hms.common.util.AGCUtils;
import com.huawei.hms.support.log.HMSLog;
/* loaded from: classes2.dex */
public class Util {
private static boolean a = false;
private static boolean b = false;
private static final Object c = new Object();
private static String d;
public static int compareHmsVersion(String str, String str2) {
if (TextUtils.isEmpty(str)) {
return -1;
}
if (TextUtils.isEmpty(str2)) {
return 1;
}
if (StringUtil.checkVersion(str) && StringUtil.checkVersion(str2)) {
String[] split = str.split("\\.");
String[] split2 = str2.split("\\.");
if (2 < split.length && 2 < split2.length) {
if (Integer.parseInt(split[0]) > Integer.parseInt(split2[0])) {
return 1;
}
if (Integer.parseInt(split[0]) < Integer.parseInt(split2[0])) {
return -1;
}
if (Integer.parseInt(split[1]) > Integer.parseInt(split2[1])) {
return 1;
}
if (Integer.parseInt(split[1]) < Integer.parseInt(split2[1])) {
return -1;
}
if (Integer.parseInt(split[2]) > Integer.parseInt(split2[2])) {
return 1;
}
if (Integer.parseInt(split[2]) < Integer.parseInt(split2[2])) {
return -1;
}
}
}
return 0;
}
public static Activity getActiveActivity(Activity activity, Context context) {
return UIUtil.getActiveActivity(activity, context);
}
public static String getAppId(Context context) {
return AGCUtils.getAppId(context);
}
public static String getAppName(Context context, String str) {
if (context == null) {
HMSLog.e("Util", "In getAppName, context is null.");
return "";
}
PackageManager packageManager = context.getPackageManager();
if (packageManager == null) {
HMSLog.e("Util", "In getAppName, Failed to get 'PackageManager' instance.");
return "";
}
try {
if (TextUtils.isEmpty(str)) {
str = context.getPackageName();
}
CharSequence applicationLabel = packageManager.getApplicationLabel(packageManager.getApplicationInfo(str, 128));
return applicationLabel == null ? "" : applicationLabel.toString();
} catch (AndroidException | RuntimeException unused) {
HMSLog.e("Util", "In getAppName, Failed to get app name.");
return "";
}
}
public static String getCpId(Context context) {
return AGCUtils.getCpId(context);
}
public static int getHmsVersion(Context context) {
Bundle bundle;
Object obj;
if (context == null) {
return 0;
}
PackageManager packageManager = context.getPackageManager();
if (packageManager == null) {
HMSLog.e("Util", "In getHmsVersion, Failed to get 'PackageManager' instance.");
return 0;
}
try {
ApplicationInfo applicationInfo = packageManager.getPackageInfo(context.getPackageName(), 128).applicationInfo;
if (applicationInfo != null && (bundle = (Bundle) PackageItemInfo.class.getField("metaData").get(applicationInfo)) != null && (obj = bundle.get("com.huawei.hms.version")) != null) {
String valueOf = String.valueOf(obj);
if (!TextUtils.isEmpty(valueOf)) {
return StringUtil.convertVersion2Integer(valueOf);
}
}
HMSLog.i("Util", "In getHmsVersion, Failed to read meta data for the HMS VERSION.");
return 0;
} catch (AndroidException unused) {
HMSLog.e("Util", "In getHmsVersion, Failed to read meta data for the HMS VERSION.");
return 0;
} catch (RuntimeException e) {
HMSLog.e("Util", "In getHmsVersion, Failed to read meta data for the HMS VERSION.", e);
return 0;
}
}
public static String getNetType(Context context) {
return SystemUtils.getNetType(context);
}
public static String getProcessName(Context context, int i) {
return UIUtil.getProcessName(context, i);
}
@Deprecated
public static String getProductCountry() {
int lastIndexOf;
String systemProperties = getSystemProperties("ro.product.locale.region", "");
if (!TextUtils.isEmpty(systemProperties)) {
return systemProperties;
}
String systemProperties2 = getSystemProperties("ro.product.locale", "");
if (!TextUtils.isEmpty(systemProperties2) && (lastIndexOf = systemProperties2.lastIndexOf("-")) != -1) {
return systemProperties2.substring(lastIndexOf + 1);
}
String localCountry = SystemUtils.getLocalCountry();
return !TextUtils.isEmpty(localCountry) ? localCountry : "";
}
public static String getSystemProperties(String str, String str2) {
return SystemUtils.getSystemProperties(str, str2);
}
public static Activity getValidActivity(Activity activity, Activity activity2) {
if (activity != null && !activity.isFinishing()) {
return activity;
}
if (activity2 == null || activity2.isFinishing()) {
return null;
}
return activity2;
}
@Deprecated
public static boolean isChinaROM() {
return SystemUtils.isChinaROM();
}
public static boolean isEMUI() {
return SystemUtils.isEMUI();
}
public static void unBindServiceCatchException(Context context, ServiceConnection serviceConnection) {
try {
StringBuilder sb = new StringBuilder("Trying to unbind service from ");
sb.append(serviceConnection);
HMSLog.i("Util", sb.toString());
context.unbindService(serviceConnection);
} catch (Exception e) {
StringBuilder sb2 = new StringBuilder("On unBindServiceException:");
sb2.append(e.getMessage());
HMSLog.e("Util", sb2.toString());
}
}
public static boolean isAvailableLibExist(Context context) {
Bundle bundle;
Object obj;
boolean z;
if (context == null) {
return b;
}
synchronized (c) {
if (!a) {
PackageManager packageManager = context.getPackageManager();
if (packageManager == null) {
HMSLog.e("Util", "In isAvailableLibExist, Failed to get 'PackageManager' instance.");
try {
Class.forName("com.huawei.hms.adapter.AvailableAdapter");
z = true;
} catch (ClassNotFoundException unused) {
HMSLog.e("Util", "In isAvailableLibExist, Failed to find class AvailableAdapter.");
}
} else {
try {
try {
ApplicationInfo applicationInfo = packageManager.getPackageInfo(context.getPackageName(), 128).applicationInfo;
if (applicationInfo != null && (bundle = (Bundle) PackageItemInfo.class.getField("metaData").get(applicationInfo)) != null && (obj = bundle.get("availableLoaded")) != null && String.valueOf(obj).equalsIgnoreCase("yes")) {
HMSLog.i("Util", "available exist: true");
z = true;
}
} catch (RuntimeException e) {
HMSLog.e("Util", "In isAvailableLibExist, Failed to read meta data for the availableLoaded.", e);
}
} catch (AndroidException unused2) {
HMSLog.e("Util", "In isAvailableLibExist, Failed to read meta data for the availableLoaded.");
}
z = false;
}
b = z;
a = true;
}
}
StringBuilder sb = new StringBuilder("available exist: ");
sb.append(b);
HMSLog.i("Util", sb.toString());
return b;
}
public static String getServiceActionMetadata(Context context) {
ResolveInfo resolveInfo;
String str = d;
if (str != null) {
return str;
}
try {
Intent intent = new Intent(PackageConstants.INTERNAL_SERVICES_ACTION);
intent.setPackage(context.getPackageName());
resolveInfo = context.getPackageManager().resolveService(intent, 128);
} catch (Exception e) {
StringBuilder sb = new StringBuilder("Exception when getServiceActionMetadata. ");
sb.append(e.getMessage());
HMSLog.e("Util", sb.toString());
resolveInfo = null;
}
if (resolveInfo != null) {
d = PackageConstants.INTERNAL_SERVICES_ACTION;
return PackageConstants.INTERNAL_SERVICES_ACTION;
}
d = "";
return "";
}
}