Ejemplo n.º 1
0
  componentDidMount() {
    AdMobInterstitial.setTestDeviceID('EMULATOR');
    AdMobInterstitial.setAdUnitId('ca-app-pub-3940256099942544/1033173712');

    AdMobInterstitial.addEventListener('interstitialDidLoad',
      () => console.log('interstitialDidLoad event'));
    AdMobInterstitial.addEventListener('interstitialDidClose',
      this.interstitialDidClose);
    AdMobInterstitial.addEventListener('interstitialDidFailToLoad',
      () => console.log('interstitialDidFailToLoad event'));
    AdMobInterstitial.addEventListener('interstitialDidOpen',
      () => console.log('interstitialDidOpen event'));
    AdMobInterstitial.addEventListener('interstitialWillLeaveApplication',
      () => console.log('interstitalWillLeaveApplication event'));

    AdMobInterstitial.requestAd((error) => error && console.log(error));
  }
Ejemplo n.º 2
0
'use strict';

var React = require('react-native');
var {
  AppRegistry,
  StyleSheet,
  Text,
  View,
} = React;

var Banner = require('react-native-admob').AdMobBanner;
var Interstital = require('react-native-admob').AdMobInterstitial;

Interstital.setAdUnitId('ca-app-pub-3940256099942544/1033173712');

var Example = React.createClass({
  getInitialState: function() {
    return {
      size: 'banner',
    };
  },
  press(size) {
    this.setState({
      size: size,
    });
  },
  showInterstital() {
    Interstital.tryShowNewInterstitial(null);
  },
  render: function() {
    return (
Ejemplo n.º 3
0
import React, {Component} from 'react';
import {
	View,
	Text,
	StyleSheet,
	Navigator,
	ToastAndroid,
	ScrollView
} from 'react-native';

import Toolbar from './Toolbar';
import ChapterList from './ChapterList';
import { AdMobBanner, AdMobInterstitial } from 'react-native-admob'

AdMobInterstitial.setAdUnitId('ca-app-pub-1547807753053427/3801442596');

class Home extends Component {
	render() {
		return (
			<View style={styles.container}>
				<Toolbar
					icon='menu'	
					title='Home' 
					onPress={this._onIconPress.bind(this)}/>
				<ScrollView>
					<Text style={styles.title}>The Criminal Code of the Philippines</Text>
					<ChapterList {...this.props} />
				</ScrollView>
				<AdMobBanner
				  bannerSize={"banner"}
				  adUnitID={"ca-app-pub-1547807753053427/1406379399"}