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. ...
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...
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!
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...
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...
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...
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.