Code Pie
Code Pie

Reputation: 1

Admob is not working in flutter latest version 3.03. App Crashes after adding admob sdk

I have tried googl_mobile_ads and admob_flutter. Both SDK Crashes App. Is there someone facing the same issue

Upvotes: 0

Views: 51

Answers (1)

Dabbel
Dabbel

Reputation: 2825

Did you add your application id to the AndroidMainfest.xml ?

<meta-data
  android:name="com.google.android.gms.ads.APPLICATION_ID"
  android:value="ca-app-pub-..."/>

Follow this official tutorial:

https://codelabs.developers.google.com/codelabs/admob-ads-in-flutter/

Upvotes: 1

Related Questions