Admob error Type ‘AdMobFreeOriginal’ is missing the following properties from type ‘TypeProvider’

ng.cmd run app:ionic-cordova-build --platform=android

ERROR in src/app/app.module.ts:29:51 - error TS2322: Type ‘AdMobFreeOriginal’ is not assignable to type ‘Provider’.
Type ‘AdMobFreeOriginal’ is missing the following properties from type ‘TypeProvider’: apply, call, bind, prototype, and 5 more.

29 Clipboard,Device,AdMobFree,
~~~~~~~~~

[ERROR] An error occurred while running subprocess ng.

    ng.cmd run app:ionic-cordova-build --platform=android exited with exit code 1.

    Re-running this command with the --verbose flag may provide more information.

SOLUTION
change
import { AdMobFree, AdMobFreeBannerConfig } from ‘@ionic-native/admob-free’;
with
import { AdMobFree, AdMobFreeBannerConfig } from ‘@ionic-native/admob-free/ngx’;

1 Like