Menu
  • HOME
  • TAGS

StartApp iOS banner won't show with my correct devID

banner,startapp

I sent an email to StartApp support, and they told me that my account has been suspended due to my app is generating automated and deceptive impressions, clicks, installs and/or other actions with respect to StartApp ads. Be careful, we should not be cheating. :) Cheers -Khang...

Integrating StartApp SDK into RoboVM application?

sdk,robovm,startapp

To add StartApp IOS SDK, you will need to create a binding project first. There is a GitHub repo from some folks of the libGDX / RoboVM community that already has the bindings for a lot of popular SDKs, You can find the repo, and the binding creation guide here....

Android Startapp InAppPlus SDK crashes

sdk,integration,init,startapp

I solved the problem. I deleted the jar and then bin file and then cleaned the project. The bin folder is automatically created again without the startapp jar. I also removed it by following Properties>Java Build Path. Then in this section i created a lib folder in project. Then i...

StartApp not displaying banners

android,libgdx,startapp

first of all <com.startapp.android.publish.banner.Banner android:id="@+id/startAppBanner" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true"/> you do not need the above code in your manifest file, second of all, have you referenced your startapp add to load your add? it goes something like startapp.loadAdd(); or startapp.showAdd(); i have seen it before or so, do it after the...

Android Listview Position getview Startapp ads

android,position,ads,startapp

check position on item click and try this InterstitialAd mInterstitialAd = new InterstitialAd(context); mInterstitialAd.setAdUnitId("ur ad id"); AdRequest adRequest = new AdRequest.Builder().build(); mInterstitialAd.loadAd(adRequest); mInterstitialAd.setAdListener(new AdListener() { public void onAdLoaded() { displayInterstitial(); } }); public void displayInterstitial() { if (mInterstitialAd.isLoaded()) { mInterstitialAd.show(); } } hope this will help you...