GoooBet v1.0版本的 MD5 值为:ff9748f16167bfd7735b669c0a9931c5

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


package io.bidmachine.ads.networks.nast;

import io.bidmachine.AdsType;
import io.bidmachine.NetworkAdapter;
import io.bidmachine.unified.UnifiedNativeAd;

public class NastAdapter extends NetworkAdapter {
    public static final String KEY = "nast";

    public NastAdapter() {
        super("nast", "1.0", "1.8.0.1", new AdsType[]{AdsType.Native});
    }

    @Override
    public UnifiedNativeAd createNativeAd() {
        return new NastNative();
    }
}