Integrating Google Admob in Android Apps

Updated 3 April 2019

Save

To integrate the Google Mobile Ads SDK also known as AdMob into an app, the first step is to Create a Google AdMob account and register an app. Once the app is registered we will start integrating it in the code.

First, we will add the Gradle dependency in the app. Add the below dependency in the app-level build.gradle

Update your manifest file:

Add your AdMob App ID to your app’s AndroidManifest.xml file by adding the <meta-data> tag shown below. You can find your App ID in the AdMob UI. For android:value insert your own AdMob App ID in quotes, as shown below.

Important: This step is required as of Google Mobile Ads SDK version 17.0.0. Failure to add this <meta-data> tag results in a crash with the message: "The Google Mobile Ads SDK was initialized incorrectly."

 

Add AdView to the layout:

Once you’ve integrated the SDK, you can choose an ad format (such as native or rewarded video) and the add an AdView in the layout.

 

Initialize SDK:

To start displaying ad we will need to initialize the AdMob SDK. We will do it in the onCreate() function of our Activity class.

Then we will do an ad request to load an ad.

You can create AdView programmatically as well.

 

References:

author
. . .

Leave a Comment

Your email address will not be published. Required fields are marked*


2 comments

  • Muhammad
    • rishabh sharma (Moderator)
  • Start a Project


      Message Sent!

      If you have more details or questions, you can reply to the received confirmation email.

      Back to Home