Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an AdMob or other ad service SDK for Flutter apps [closed]

Tags:

flutter

Hi I want to build a Flutter app but wanted to put some ads in my app can I do that with Flutter? I was looking at react native and they have ads available but I can't find any information for Flutter.

like image 512
user2419598 Avatar asked Feb 13 '17 05:02

user2419598


3 Answers

I am not aware of any ad service SDKs specifically targeting Flutter today.

Flutter-using apps are just normal iOS or Android apps which happen to include a FlutterView, so ad frameworks using UIView or android.View playback systems should be possible to incorporate next to or (completely) on top of a FlutterView today. hello_services in the Flutter examples has an example of placing other UIView or android.View objects next to the FlutterView object in the view hierarchy on iOS and Android: https://github.com/flutter/flutter/tree/master/examples/hello_services

However there is no way to place UIView or android.View object inside or semi-transparently behind a FlutterView yet, and there are no written-in-Flutter ads players that I'm aware of.

If you were to attempt to integrate ads into Flutter-using App and had trouble, we would love too hear from you. flutter.io lists many ways to contact the team (including Stack Overflow).

As Seth mentioned above there is a bug on file with Flutter about providing a good example of integrating ads and improving the ways to do so: https://github.com/flutter/flutter/issues/8098

like image 98
Eric Seidel Avatar answered Nov 02 '22 07:11

Eric Seidel


There is now an AdMob plugin for Flutter underway here: https://github.com/flutter/plugins/tree/master/packages/firebase_admob

Note, as of Sept 19, 2017, the plugin supports a subset of options and features, as the plugin is still a work in progress. We encourage you to check what the plugin supports before you start using it. Features and ideas welcome at https://flutter.io/issues

like image 45
Seth Ladd Avatar answered Nov 02 '22 06:11

Seth Ladd


Yes you can use firebase admob plugin for flutter app.

https://pub.dartlang.org/packages/firebase_admob#-example-tab-

You can check this video if you need to know how it gone a add to app. https://www.youtube.com/watch?v=rXYmbTBT3Yo

like image 32
Ishan Fernando Avatar answered Nov 02 '22 05:11

Ishan Fernando