Posts

Showing posts with the label admob

react-native-admob compatibility with wix react-native-navigation

I'm using wix/react-native-navigation router (tab based app) and react-native-adbmob package for AdMob Rewarded Video Ads. On Android, it works well, but on the iOS, when I try to show a Reward ad in react-native-navigation Modal window ( this.props.navigator.showModal(config) ), it is not visible although the adOpened event is fired. Has anybody faced the same or similar issue with other packages?

Native Ads In React Native

How do you implement AdMob's Native Ads in React Native? The best I've found is react-native-admob, but it only does fixed banners and full screen interstitials. How could I implement native ads inside my React Native app with AdMob or any other native ad provider? There's also react native facebook ads Have a look: React Native Facebook Ads This plugin allows you to implement native ads, only downside is that the installation process is a bit of a handful but it does work. It also requires react-native-fbsdk to be installed too so that your ads produce relevant ads to your users once they've logged in. At this moment react-native-admob doesn't support native ads just yet, but you can implement it in a way that it's not fixed like so: <ScrollView> <View> <Text>Add some content here</Text> <AdMobBanner bannerSize="smartBannerPortrait" adUnitID="you-ad-unit-id" testDeviceID="EMULA...

Adding React-Native-Admob in React-Native

I am trying to add React-Native-Admob 2.0.0-beta.5 into React-Native v0.55.4 for Android. compileSdkVersion =26 buildToolsVersion ="27.0.3" targetSdkVersion = 26 supportLibVersion = "26.1.0" minSdkVersion = 18 And React-Native-Admob has compileSdkVersion 23 buildToolsVersion "23.0.1" defaultConfig { minSdkVersion 16 targetSdkVersion 22 } And when i Compile the error Exception occur The SDK Build Tools revision (23.0.1) is too low for project ':react-native-admob'. Minimum required is 25.0.0 I can't downgrade my project's SDK, other package uses that SDK. You don't need to downgrade, you need to upgrade. Dependencies were probably added in the SDK that admob relies on. You can download the specified version packages for the SDK through Android studio and then set your SDK version in the file to the appropriate version necessary for admob. Edit I see that you are saying that admob is using version...