Problem with DFP ad unit

Hello

Here (https://docs.expo.io/versions/latest/sdk/admob/) I find sample for DFP banners but not working.
I log into my DFP account after that I make mobile adunit and I get unit ID.

import React, { Component } from “react”;
import { Content, Text } from “native-base”;
import { PublisherBanner } from ‘expo’;

export default class TestList extends Component {

render() {
    return (
        <Content padder>
            <Text>Banner</Text>

            <PublisherBanner
                bannerSize="fullBanner"
                adUnitID="/NUMBERS/test_mobile_app"
                testDeviceID="EMULATOR"
                onDidFailToReceiveAdWithError={this.bannerError}
                onAdMobDispatchAppEvent={this.adMobEvent} />
        </Content>
    );
}

}

Why not working? This ad unit has delivering status.

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.