When I try to use google_mobile_ads
, I get the following text and it does not work.
I also tried using adMob_flutter and that one worked fine.
Unhandled Exception: MissingPluginException(No implementation found for method MobileAds#initialize on channel plugins.flutter.io/google_mobile_ads)
This is main.dart
file:
Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
await Firebase.initializeApp();
MobileAds.instance.initialize();
runApp((myApp()));
}
How can I solve this problem?