This section illustrates how to integrate AdFalcon Android SDK with AdMob Mediation in your app.
Step 1: Add AdMob SDK to your app
For more information, please check AdMob’s guide:
https://firebase.google.com/docs/admob/android/quick-start
Step 2: Add AdFalcon SDK to your app
For more information, please check AdFalcon’s guide:
Step 3: Add the Android Mediation Adapter to your app
You have two choices to adding the library of Admob’s adapter, either by downloading the Adapter from the link below
Or
Import the Admob Mediation Adapter via the gradle, be sure you have also imported the latest version of the AdFalcon’s SDK with the Adapter.
Open your project’s build.gradle, and update the “allprojects” block, as follows
allprojects { repositories { jcenter() maven { url "https://cdn01.static.adfalcon.com/sdk/android/maven" } } }
Update the “dependencies” block of your module’s build.gradle file, as follows:
implementation 'com.noqoush.adfalcon.android.sdk:adfalcon-sdk:4.2.0' implementation 'com.google.ads.mediation.adfalcon:admob-mediation-adapter:2.1.0'