Как отобразить admob Interstitial с реагировать-native-admob? - PullRequest
0 голосов
/ 17 сентября 2018

Я пытаюсь отобразить admob Interstitial, но у меня есть эта ошибка. Баннер admob работает нормально, и единственная проблема связана с Interstitial.

Это мой код:

import {AdMobInterstitial} from 'react-native-admob';
    componentDidMount() {
    AdMobInterstitial.setAdUnitID('ca-app-pub-3940256099942544/1033173712');
    AdMobInterstitial.requestAd().then(() => AdMobInterstitial.showAd());
    }

Скриншот

1 Ответ

0 голосов
/ 07 февраля 2019
import {AdMobBanner,AdMobInterstitial,PublisherBanner,AdMobRewarded} from 'react-native-admob';
class Alpha extends React.Component {
    componentWillMount(){
        this.makeAdmobRequest();
        setTimeout(()=>{
            this.makeRemoteRequest()
        },1000);
        setTimeout(()=>{
            this.showInterstitial()
        },60000);
    }  
    makeAdmobRequest=()=>{
        return  fetch('http://url/admob_setting.php?cat_id=2')
        .then((response) => response.json())
        .then((responseJson) =>
        {
            var bannerid1=responseJson[0]['banner_add'];
            this.setState({
                bannerid1:responseJson[0]['banner_add'],
                interestitialid:responseJson[0]['interestial_add'],
            });
        })
        .catch((error) =>
        {
            console.error(error);
        });
    }

    renderAdd(){
        if(this.state.bannerid1){
            return(
                <View style={{flex:1}}>
                    <AdMobBanner
                    adSize="banner"
                    adUnitID={this.state.bannerid1}
                    testDeviceID="EMULATOR"
                    didFailToReceiveAdWithError={this.bannerError} />
                </View>
            );
        }
    }

    showInterstitial() {
        AdMobInterstitial.setTestDevices([AdMobInterstitial.simulatorId]);
        AdMobInterstitial.setAdUnitID(this.state.interestitialid);
        AdMobInterstitial.requestAd().then(() => AdMobInterstitial.showAd());
    }
    render() {
        .......
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...