导航菜单

页面标题

页面副标题

Online Loans v421.2.42 - CrossPromotionHelper.java 源代码

正在查看: Online Loans v421.2.42 应用的 CrossPromotionHelper.java JAVA 源代码文件

本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。


package com.appsflyer.share;

import android.content.Context;
import androidx.annotation.NonNull;
import com.appsflyer.AFLogger;
import com.appsflyer.AppsFlyerLib;
import com.appsflyer.AppsFlyerProperties;
import com.appsflyer.internal.AFa1zSDK;
import com.appsflyer.internal.AFc1fSDK;
import com.appsflyer.internal.AFe1jSDK;
import com.appsflyer.internal.AFe1sSDK;
import com.appsflyer.internal.AFe1sSDK.AnonymousClass3;
import com.appsflyer.internal.AFh1zSDK;
import com.appsflyer.internal.AFj1fSDK;
import com.appsflyer.internal.AFk1wSDK;
import java.util.HashMap;
import java.util.Map;

public class CrossPromotionHelper {
    private static String getMonetizationNetwork = "https://%simpression.%s";

    private static void getCurrencyIso4217Code(@NonNull String str, @NonNull Context context, AFk1wSDK aFk1wSDK) {
        AFa1zSDK monetizationNetwork = AFa1zSDK.getMonetizationNetwork();
        monetizationNetwork.getCurrencyIso4217Code(context);
        AFc1fSDK AFAdRevenueData = monetizationNetwork.AFAdRevenueData();
        AFe1jSDK aFe1jSDK = new AFe1jSDK(AFAdRevenueData, str, aFk1wSDK);
        AFe1sSDK equals = AFAdRevenueData.equals();
        equals.getRevenue.execute(equals.new AnonymousClass3(aFe1jSDK));
    }

    @NonNull
    private static LinkGenerator getRevenue(@NonNull Context context, String str, String str2, Map<String, String> map, String str3) {
        LinkGenerator linkGenerator = new LinkGenerator("af_cross_promotion");
        linkGenerator.getMediationNetwork = str3;
        linkGenerator.getRevenue = str;
        linkGenerator.addParameter("af_siteid", context.getPackageName());
        if (str2 != null) {
            linkGenerator.setCampaign(str2);
        }
        if (map != null) {
            linkGenerator.addParameters(map);
        }
        return linkGenerator;
    }

    public static void logAndOpenStore(@NonNull Context context, String str, String str2) {
        logAndOpenStore(context, str, str2, null);
    }

    public static void logCrossPromoteImpression(@NonNull Context context, String str, String str2) {
        logCrossPromoteImpression(context, str, str2, null);
    }

    public static void setUrl(Map<String, String> map) {
        char c7;
        for (Map.Entry<String, String> entry : map.entrySet()) {
            String value = entry.getValue();
            String key = entry.getKey();
            int hashCode = key.hashCode();
            if (hashCode != 96801) {
                if (hashCode == 120623625 && key.equals("impression")) {
                    c7 = 1;
                }
                c7 = 65535;
            } else {
                if (key.equals("app")) {
                    c7 = 0;
                }
                c7 = 65535;
            }
            if (c7 == 0) {
                AFj1fSDK.getRevenue = value;
            } else if (c7 == 1) {
                getMonetizationNetwork = value;
            }
        }
    }

    public static void logAndOpenStore(@NonNull Context context, String str, String str2, Map<String, String> map) {
        LinkGenerator revenue = getRevenue(context, str, str2, map, String.format(AFj1fSDK.getRevenue, AppsFlyerLib.getInstance().getHostPrefix(), AFa1zSDK.getMonetizationNetwork().getHostName()));
        if (AppsFlyerProperties.getInstance().getBoolean(AppsFlyerProperties.AF_WAITFOR_CUSTOMERID, false)) {
            AFLogger.INSTANCE.i(AFh1zSDK.CROSS_PROMOTION, "CustomerUserId not set, track And Open Store is disabled", true);
            return;
        }
        if (AppsFlyerLib.getInstance().isStopped()) {
            AFLogger.INSTANCE.i(AFh1zSDK.CROSS_PROMOTION, "SDK is stopped, track And Open Store is disabled", true);
            return;
        }
        if (map == null) {
            map = new HashMap<>();
        }
        map.put("af_campaign", str2);
        AppsFlyerLib.getInstance().logEvent(context, "af_cross_promotion", map);
        getCurrencyIso4217Code(revenue.generateLink(), context, new AFk1wSDK(context));
    }

    public static void logCrossPromoteImpression(@NonNull Context context, String str, String str2, Map<String, String> map) {
        if (AppsFlyerProperties.getInstance().getBoolean(AppsFlyerProperties.AF_WAITFOR_CUSTOMERID, false)) {
            AFLogger.INSTANCE.i(AFh1zSDK.CROSS_PROMOTION, "CustomerUserId not set, Promote Impression is disabled", true);
        } else if (AppsFlyerLib.getInstance().isStopped()) {
            AFLogger.INSTANCE.i(AFh1zSDK.CROSS_PROMOTION, "SDK is stopped, Promote Impression is disabled", true);
        } else {
            getCurrencyIso4217Code(getRevenue(context, str, str2, map, String.format(getMonetizationNetwork, AppsFlyerLib.getInstance().getHostPrefix(), AFa1zSDK.getMonetizationNetwork().getHostName())).generateLink(), context, null);
        }
    }
}