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

Hi, I want to create a Flutter application, but would like to place some ads in my application, can I do it with Flutter? I watched how to respond to the native language, and they have ads, but I can not find any information for Flutter.

+8
source share
4 answers

I am not aware of any SDK ad packages specifically designed for Flutter today.

Flutter-enabled apps are regular iOS or Android apps that include FlutterView, so ad frames using UIView or android.View playback systems should be included in addition to (or fully) on top of FlutterView today. hello_services in Flutter examples has an example of placing other UIView or android.View objects next to the FlutterView object in the hierarchy of views on iOS and Android: https://github.com/flutter/flutter/tree/master/examples/hello_services

However, there is no way to place a UIView or an android.View object inside or translucently behind FlutterView yet, and there are no explicit players with ads in Flutter.

If you tried to integrate advertising into an application using flutter, and you had problems, we would also like to hear from you. flutter.io lists many ways to contact the team (including stack overflows).

As mentioned above in Seth, there is an error in the Flutter file about providing a good example of integrating ads and improving ways to do this: https://github.com/flutter/flutter/issues/8098

+5
source

Now here is the AdMob plugin for Flutter: https://github.com/flutter/plugins/tree/master/packages/firebase_admob

Please note that as of September 19, 2017, the plugin supports a subset of options and functions, since the plugin is still under development. We recommend that you check what the plugin supports before you start using it. Features and ideas are welcome at https://flutter.io/issues

+5
source

Yes, you can use the Firebase AdMob plugin for a flutter application.

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

You can check out this video if you need to know how it was added to the application. https://www.youtube.com/watch?v=rXYmbTBT3Yo

+1
source

Now there is one available, for more details see: https://pub.dev/packages/admob_flutter

0
source

Source: https://habr.com/ru/post/1264146/


All Articles