Menu
  • HOME
  • TAGS

Ads not working properly

objective-c,sprite-kit,ads,revmob

I am using this method in StartApp. Try this. //yourViewControl.m [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleNotification:) name:@"showAd" object:nil]; - (void)handleNotification:(NSNotification *)notification { if ([notification.name isEqualToString:@"showAd"]) { [[RevMobAds session] showBanner]; } } //yourSKScene [[NSNotificationCenter defaultCenter] postNotificationName:@"showAd" object:nil];//Call with this. ...

Google play advertising sdk issue

android,google-play,revmob

The problem is that Google replaced android id with advertiser id . so older version of revmob may use the android id. The advertising ID is a user-specific, unique, resettable ID for advertising, provided by Google Play services. It gives users better controls and provides developers with a simple, standard...

Getting Revmob banner listener to work in Corona

lua,listener,corona,banner,revmob

For anyone else who needs the answer to this question. I was able to contact Revmob and get help on this issue. Turns out it was a bug in the revmob.lua SDK 5.5.1 Download the new one from http://sdk.revmobmobileadnetwork.com/corona.html#download Happy coding everyone!

Integrating Revmob into SpriteKit Swift game

swift,sprite-kit,revmob,revmobads

Based on your last comment, I suggest you do the following (as per the instructions on the RevMob website). Create the SWIFT game project. Add the required frameworks: SystemConfiguration.framework, StoreKit.framework, MediaPlayer.framework, AdSupport.framework and the downloaded RevMobAds.framework. Create a new file. Make sure you are selecting from the relevant iOS/OS X...

How to show revmob ads in my air for android app

android,flash,air,adobe,revmob

When you first publish your app you should get an xml file created named YourAppName-app.xml. This is the AndroidManifest.xml You can test ads without uploading to Google Play. You ideal need to be using the latest AIR SDK from labs.adobe.com which is now 17.0.0.123...

Cannot convert from void, RevMob Error

android,hyperlink,listener,void,revmob

You have to start the session as it follows (http://sdk.revmobmobileadnetwork.com/android.html#session): public class YourMainActivity extends Activity { private RevMob revmob; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); // Starting RevMob session revmob = RevMob.start(this); // RevMob App ID configured in the AndroidManifest.xml file } } In your manifest file, insert your...

IOS How can I put a remove ads button over a revmob fullscreen ad when it shows?

ios,iphone,revmob

I doubt you can do that, as ad providers need to guarantee you're not hiding the ad from the customers. And if you could do it, it might be against your ad contract.

RevMob cache ad to display when there is no internet connection

ios,xcode,caching,ads,revmob

Yes you can cache the ad and display it whenever you want, but if there is no internet connection, RevMob's servers won't be notified and it will not generate income.