QR Scanner v2.8.7版本的 MD5 值为:9dcdcf654454b02f97d5fcd68f9f4629

以下内容为反编译后的 a.java 源代码,内容仅作参考


package i5;

import com.github.appintro.BuildConfig;
import java.util.HashMap;
import java.util.Map;
public final class a {
    private static final Map f10593a;
    private static final Map f10594b;

    static {
        HashMap hashMap = new HashMap();
        f10593a = hashMap;
        HashMap hashMap2 = new HashMap();
        f10594b = hashMap2;
        hashMap.put(-1, "The Play Store app is either not installed or not the official version.");
        hashMap.put(-2, "Call first requestReviewFlow to get the ReviewInfo.");
        hashMap2.put(-1, "PLAY_STORE_NOT_FOUND");
        hashMap2.put(-2, "INVALID_REQUEST");
    }

    public static String a(int i10) {
        Map map = f10593a;
        Integer valueOf = Integer.valueOf(i10);
        if (map.containsKey(valueOf)) {
            String str = (String) map.get(valueOf);
            String str2 = (String) f10594b.get(valueOf);
            StringBuilder sb = new StringBuilder(String.valueOf(str).length() + 106 + String.valueOf(str2).length());
            sb.append(str);
            sb.append(" (https://developer.android.com/reference/com/google/android/play/core/review/model/ReviewErrorCode.html#");
            sb.append(str2);
            sb.append(")");
            return sb.toString();
        }
        return BuildConfig.FLAVOR;
    }
}