I am new to ad mediation. I have a flutter app and I have integrated admob using following admob_flutter plugin and its working fine on both Android and iOS.
Now I want to add facebook audience as mediation network. I have followed the steps in following tutorial provided by google to setup audience account and integration in Admob portal.
https://developers.google.com/admob/android/mediation/facebook
My confusion is about facebook audience sdk to integrate. Which one should I add :
facebook_audience flutter plugin -https://pub.dev/packages/facebook_audience_network.
implementation 'com.google.ads.mediation:facebook:5.8.0.0' - google tutorial ask to add open source mediation adapter.
- implementation 'com.facebook.android:audience-network-sdk:5.+' - facebook audience tutorial ask to integrate this sdk.
What is the difference betweek sdk and adapter? Should we have both facebook audience sdk and mediation adapter (Point 2 and 3)? If only sdk is enough, then including flutter plugin is enough for both android and iOS?
Thanks