APK反编译源代码展示 - 南明离火平台提供

应用版本信息
应用名称:Airplanes Mod
版本号:.1.0.25
包名称:com.robodevmods.AirplanesMod

MD5 校验值:f8da89ec7f90fdb8ce78785d72a105bc

反编译源代码说明

vo.java 文件包含反编译后的源代码,请注意,该内容仅供学习和参考使用,不得用于非法用途。


package com.yandex.metrica.impl.ob;

import android.text.TextUtils;
import java.util.UUID;

public class vo implements uo<String> {
    @Override
    public so a(String str) {
        String str2 = str;
        if (TextUtils.isEmpty(str2)) {
            return so.a(this, "ApiKey is empty. Please, read official documentation how to obtain one: https://yandex.com/dev/appmetrica/doc/mobile-sdk-dg/concepts/android-initialize.html");
        }
        try {
            UUID.fromString(str2);
            return so.a(this);
        } catch (Throwable unused) {
            return so.a(this, "Invalid ApiKey=" + str2 + ". Please, read official documentation how to obtain one: https://yandex.com/dev/appmetrica/doc/mobile-sdk-dg/concepts/android-initialize.html");
        }
    }
}