revmob

RevMob banner ads won't display

跟風遠走 提交于 2020-03-06 09:01:10
问题 Alright so this is the code I'm using but banner ads won't seem to load up. Testing mode is on but nothing shows up at all. let completionBlock: () -> Void = { //Custom method defined below self.banner?.showAd() self.bannerView?.showAd() } let failureBlock: (NSError!) -> Void = {error in print("Gifting Chaos Session failed to start with error: \(error.localizedDescription)") } RevMobAds.startSession(withAppID: "myKEY", withSuccessHandler: completionBlock, andFailHandler: nil) bannerView? =

How to initiate revmob banner ad with exact frame and placement ID?

限于喜欢 提交于 2019-12-21 06:16:12
问题 I tried using the suggested code from RevMob to show a banner ad with a specific placement ID without success, tried this code: RevMobAds *revmob = [RevMobAds revMobAds]; RevMobBanner *banner = [revmob bannerWithPlacementId:@"ID_FROM_REV_MOB"]; [banner showAd]; Tried even to add the following statement if (IS_iPad) { banner.frame = CGRectMake(0, 958, 768, 66); } else if (IS_WIDESCREEN){ banner.frame = CGRectMake(0, 518, 320, 50); } else { banner.frame = CGRectMake(0, 430, 320, 50); } but no

RevMob sdk 5.9.0 gives error on header file while import <RevMobAds/RevMobAds.h>

房东的猫 提交于 2019-12-19 09:19:41
问题 I have already integrated RevMobs in my project. Now I just update it and download new sdk 5.9.0 and follow same step as before and also refer this link RevMob ios sdk But now i can't integrate it and while importing header file #import <RevMobAds/RevMobAds.h> it gives an error. Please help me to solve it. Here is my snap: 回答1: One of these should work 1)Open the target of your project. 2)Open the the "Build Phases" 3)Expand the "Compile Sources" 4)Delete the filename that is causing the

RevMob check Banner is loaded or not in iPhone?

霸气de小男生 提交于 2019-12-13 05:27:25
问题 I am using Revmob Framework for displaying ad banners and it's working fine. So now my Question is that how to know programmatically that banner is loaded or not? Like if we are using iads then there is a method "isBannerLoaded" to check banner is loaded or not. Actually I want to set it's frame as banner is loaded or not loaded. So is there any method like "isBannerLoaded" in Revmob Framework? 回答1: You need to implement the revMobDelegate and use revmobAdDidReceive: @interface MyAdClass :

Preloading RevMob Ad on Android

a 夏天 提交于 2019-12-13 04:07:42
问题 I'm looking for a way to preload RevMob Banner and Interstitial ads within my android app? The ads can take anything from 5-30 seconds at the moment, which is way to long for the type of app. Any help is appreciated. 回答1: If you use the ad object you can do a preload (RevMob API Docs) and show like this: Fullscreen fullscreen = revmob.createFullscreen(this); if (fullscreen.isAdLoaded()) { fullscreen.show(); } But the show only will work if the ad is already loaded! 回答2: In the newest versions

Revmob `Unexpected error on create Fullscreen Ad`

杀马特。学长 韩版系。学妹 提交于 2019-12-11 19:44:02
问题 Today I wanted to add Revmob in my app and got a error :/ The App is crashing when the loading process beginns. Here is the Crash-Report: 03-05 16:53:54.529: D/[RevMob](2268): Unexpected error on create Fullscreen Ad. 03-05 16:53:54.529: D/[RevMob](2268): java.lang.NullPointerException 03-05 16:53:54.529: D/[RevMob](2268): at com.revmob.ads.fullscreen.FullscreenActivity.initFullscreen(FullscreenActivity.java:158) 03-05 16:53:54.529: D/[RevMob](2268): at com.revmob.ads.fullscreen

Revmob banner is covering the keyboard

混江龙づ霸主 提交于 2019-12-11 18:04:26
问题 I have an issue with keypad. The kay pad is covered by the revmob add banner. I am using below code in Appdelegate + (void)basicUsageShowBanner { [[RevMobAds session] showBanner]; } How i can fix this issue? 回答1: This is a know bug from RevMob SDK, try to use a banner view as described on the documentation. 来源: https://stackoverflow.com/questions/19721013/revmob-banner-is-covering-the-keyboard

build error while add revmob ad in iOS app

☆樱花仙子☆ 提交于 2019-12-09 14:48:29
问题 I want to add RevMob add in my app but there are some errors Undefined symbols for architecture i386: "_OBJC_CLASS_$_SKStoreProductViewController", referenced from: objc-class-ref in RevMobAds(RevMobStoreController.o) "_SKStoreProductParameterITunesItemIdentifier", referenced from: -[RevMobStoreController openStoreWithITunesItemId:] in RevMobAds(RevMobStoreController.o) ld: symbol(s) not found for architecture i386 clang: error: linker command failed with exit code 1 (use -v to see invocation

How to initiate revmob banner ad with exact frame and placement ID?

半城伤御伤魂 提交于 2019-12-03 22:14:07
I tried using the suggested code from RevMob to show a banner ad with a specific placement ID without success, tried this code: RevMobAds *revmob = [RevMobAds revMobAds]; RevMobBanner *banner = [revmob bannerWithPlacementId:@"ID_FROM_REV_MOB"]; [banner showAd]; Tried even to add the following statement if (IS_iPad) { banner.frame = CGRectMake(0, 958, 768, 66); } else if (IS_WIDESCREEN){ banner.frame = CGRectMake(0, 518, 320, 50); } else { banner.frame = CGRectMake(0, 430, 320, 50); } but no success, the only way I could be able to show banner ads was this: [RevMobAds showBannerAdWithFrame

How to implement my own custom advertisement in my own android application using predefiend SDK's for ad (like admob etc)

℡╲_俬逩灬. 提交于 2019-11-30 14:25:11
问题 I am working on advertisement integration for my android application, the problem is that I'm having 3 applications live on android app store. Therefore I want that my ad SDK will show ad of these 3 applications only in these application. Means 1st application will show ad of only 2 and 3 my application, no other ad, I want to use pre- defined SDK's available on internet (like admob, revmob etc). Guys please help me regarding this... 回答1: You can just make a layout to act as your banner ad