- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
33 lines
1.1 KiB
Java
33 lines
1.1 KiB
Java
package com.google.android.gms.common.moduleinstall;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import com.google.android.gms.common.api.CommonStatusCodes;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class ModuleInstallStatusCodes extends CommonStatusCodes {
|
|
public static final int INSUFFICIENT_STORAGE = 46003;
|
|
public static final int MODULE_NOT_FOUND = 46002;
|
|
public static final int NOT_ALLOWED_MODULE = 46001;
|
|
public static final int SUCCESS = 0;
|
|
public static final int UNKNOWN_MODULE = 46000;
|
|
|
|
private ModuleInstallStatusCodes() {
|
|
}
|
|
|
|
@NonNull
|
|
public static String getStatusCodeString(int i) {
|
|
switch (i) {
|
|
case UNKNOWN_MODULE /* 46000 */:
|
|
return "UNKNOWN_MODULE";
|
|
case NOT_ALLOWED_MODULE /* 46001 */:
|
|
return "NOT_ALLOWED_MODULE";
|
|
case MODULE_NOT_FOUND /* 46002 */:
|
|
return "MODULE_NOT_FOUND";
|
|
case INSUFFICIENT_STORAGE /* 46003 */:
|
|
return "INSUFFICIENT_STORAGE";
|
|
default:
|
|
return CommonStatusCodes.getStatusCodeString(i);
|
|
}
|
|
}
|
|
}
|