Admob-free iPhone X banner issue

Hi everyone,

I have been using the admob-free plugin suggested on the ionic docs plugin list. It has been working great for me but on iPhone X I am running into issues with the banner being placed on the bottom. How am I able to raise the banner up so it doesn’t get covered by the curves? I see on the paid version of the plugin they have X and Y positioning properties. I am using the latest ionic, cordova and admob-free.

Thanks!

Hi, did you found a solution for this error? Same error here :confused:

Nope…still stuck with the ad looking really bad on iPhone X.

Hi,

Admob free installs device plugin, but you have to instal types:
npm install --save @ionic-native/device
and add it to your /src/app/app.module.ts providers:
import { Device } from '@ionic-native/device';

providers: [
    ...
    AdMobFree,
    Device,
    ...
  ]

This is fix issue for me :slight_smile: