红果免费短剧 v6.2.3.32版本的 MD5 值为:a6b05492607eab2c8a25f26d2f238ae0

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


package com.dragon.read.app;

import com.dragon.read.util.DebugManager;
import com.phoenix.read.R;

public class AppProperty {
    private static volatile AppProperty INSTANCE;
    private static final String READING_WX_SHARE_APP_ID = App.context().getString(R.string.bpg);

    public static int getAppId() {
        return 8662;
    }

    public static String getAuthorities() {
        return "com.phoenix.read.fileprovider";
    }

    public static String getBaseUrl() {
        return "https://reading.snssdk.com/";
    }

    public static String getSecurityUrl() {
        return "https://security.snssdk.com/";
    }

    public String getPlatformIdWx() {
        return "437";
    }

    private AppProperty() {
    }

    public String getWXShareAppId() {
        return READING_WX_SHARE_APP_ID;
    }

    public static String getAppIdString() {
        return String.valueOf(8662);
    }

    private static boolean isTestMode() {
        return DebugManager.inst().isBOEMode();
    }

    public static AppProperty inst() {
        if (INSTANCE == null) {
            synchronized (AppProperty.class) {
                if (INSTANCE == null) {
                    INSTANCE = new AppProperty();
                }
            }
        }
        return INSTANCE;
    }
}