App monetization offerwall customized ads , video ads , etc, whatever you want

Hey,
hope you are doing well. My name is John, a head of overseas enterprise group of medium of Adxmi. We provide app monetization service, our ads form have offerwall, interstitial, customized ads, video, etc. You just need to embed the SDK(about 200K) to your app, or link to your app with our API. ECPM $5~22.And there has been a lot of developers have cooperated with us, such as cheetahs, taobao, 360, etc. Do you have interest to cooperate with us? Looking forward to your reply
Best Regards

John 梁李昌
ADXMI - Your Specialist of Promotion & Monetization
Global Developer Monetization - 海外媒介经理
Email: [email protected]
Skype: john588lc
QQ: 352886032
Phone: +86 15820261523
[email protected]

I intergrate Adxmi Ads but it not show Ads on my app. What happen?

This is Ads code.

setContentView(R.layout.activity_main);

    AdManager.getInstance(MainActivity.this).init("8bf889f427aa29c3", "55cbf438f9931a8e");
    AdManager.getInstance(MainActivity.this).setEnableDebugLog(false);

    // (Optional) Close Adxmi log output. It is suggested that developers shouldn't close it during integration,
    // because developers can catch the real-time output information to locate the issue when issue occurs.
    // AdManager.getInstance(Context context).setEnableDebugLog(false);

    // Common Initialization, invoke it when application launches. Parameters: appId, appSecret, enable or disable
    // test mode
    //(option)Interstitial ads animation,0:ANIM_NONE,1:ANIM_SIMPLE,2:ANIM_ADVANCE
    Interstitial.setAnimationType(Interstitial.ANIM_ADVANCE);
    //(option) set  Interstitial  Adxmi Label Layout to Visibility true:is yes  false: is no
    Interstitial.setLabelTag(true);

    // PreLoading Interstitial ads
    Interstitial.getInstance(MainActivity.this).loadAds();

// Interstitial.getInstance(MainActivity.this).showAd(MainActivity.this);

    Interstitial.getInstance(MainActivity.this).showAd(this,
            new InterstitialListener() {

                @Override
                public void showSuccess() {
                    Log.e("adxmi interstitial", "interstitial success");
                }

                @Override
                public void showFailed() {
                    Log.e("adxmi interstitial", "interstitial fail");
                }

                @Override
                public void onAdClosed() {
                    Log.e("adxmi interstitial", "interstitial close");
                }

                @Override
                public void onAdClick() {
                    Log.e("adxmi interstitial", "interstitial click");
                }
            });


}