Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ERROR TypeError: Could not load view for: BannerAd.Error #263

Open
TiagoLaraTecSys opened this issue Jun 24, 2024 · 2 comments
Open

ERROR TypeError: Could not load view for: BannerAd.Error #263

TiagoLaraTecSys opened this issue Jun 24, 2024 · 2 comments

Comments

@TiagoLaraTecSys
Copy link

HEllo!

I'm trying to use BannerAd directive in angular with nativescript/firebase-admob. I'm getting the following error:

Screenshot from 2024-06-24 19-15-00

I already add the AdmobModule to my module component, what i'm doing wrong?

@mugifly
Copy link

mugifly commented Nov 13, 2024

@TiagoLaraTecSys I also encountered the same error. I hope this will be officially fixed.

As a workaround for now, I was able to display it correctly by writing it as follows:

import { Component } from "@angular/core";
import { registerElement } from "@nativescript/angular";
import { BannerAd, BannerAdSize } from "@nativescript/firebase-admob";

registerElement("BannerAd", () => {
  return require("@nativescript/firebase-admob").BannerAd;
});

@Component({
  selector: "ns-foo",
  template: `
    <BannerAd
      unitId="ca-app-pub-3940256099942544/6300978111"
      (layoutChanged)="bannerLoaded($event)"
    />
  `,
})
export class FooComponent {
  bannerLoaded(args: any) {
    const bannerView: BannerAd = args.object;
    bannerView.size = new BannerAdSize(320, 50);
    bannerView.load();
  }
}

@TiagoLaraTecSys
Copy link
Author

@TiagoLaraTecSys I also encountered the same error. I hope this will be officially fixed.

As a workaround for now, I was able to display it correctly by writing it as follows:

import { Component } from "@angular/core";
import { registerElement } from "@nativescript/angular";
import { BannerAd, BannerAdSize } from "@nativescript/firebase-admob";

registerElement("BannerAd", () => {
  return require("@nativescript/firebase-admob").BannerAd;
});

@Component({
  selector: "ns-foo",
  template: `
    <BannerAd
      unitId="ca-app-pub-3940256099942544/6300978111"
      (layoutChanged)="bannerLoaded($event)"
    />
  `,
})
export class FooComponent {
  bannerLoaded(args: any) {
    const bannerView: BannerAd = args.object;
    bannerView.size = new BannerAdSize(320, 50);
    bannerView.load();
  }
}

Woww thnks maan i'm gonna try to do this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants