---
metadata:
  - name: generator
    content: Diplodoc Platform v5.50.6
alternate:
  - https://boost.yandex.com/doc/en/ad-monetization/dev/android/admob.md
  - https://boost.yandex.com/doc/ru/ad-monetization/dev/android/admob.md
---
> **Documentation Index:** Fetch the complete configuration index at https://boost.yandex.com/doc/en/llms.txt

# Enabling Google



{% note info "Supported library and platform versions" %}

**Yandex Mobile Ads SDK:**
- The minimum supported version of the 8.2.0
- The current version of the 8.2.0
- The maximum supported version of the 8.2.1 (not including)

**Google Mobile Ads SDK:**
- The minimum supported version of the 25.2.0
- The current version of the 25.2.0
- The maximum supported version of the 25.2.1 (not including)

[Version history](https://boost.yandex.com/doc/en/ad-monetization/dev/android/changelog-android.md#google-admob-ex-admob)


{% endnote %}

## Supported ad formats {#formats}

- [Adaptive inline banner](https://boost.yandex.com/doc/en/ad-monetization/dev/android/adaptive-inline-banner.md)
- [Adaptive sticky banner](https://boost.yandex.com/doc/en/ad-monetization/dev/android/adaptive-sticky-banner.md)
- [Interstitial advertising](https://boost.yandex.com/doc/en/ad-monetization/dev/android/interstitial.md)
- [Native ads](https://boost.yandex.com/doc/en/ad-monetization/dev/android/native.md)
- [Rewarded ads](https://boost.yandex.com/doc/en/ad-monetization/dev/android/rewarded.md)
- [App Open Ads](https://ads.yandex.com/helpcenter/ru/dev/android/app-open-ad)

## Integrating the {#integration}

**Integration using Gradle**

<!-- source: en/ad-monetization/dev/_includes/admob-android.md -->
1. [Set up mediation](https://boost.yandex.com/doc/en/ad-monetization/monetization/yandex-mediation/setup.md) in the Boost interface and other network interface.

2. Add the dependencies to the build.gradle file at the app level:
   ```
   implementation 'com.yandex.android:mobileads:8.2.0'
   implementation 'com.yandex.ads.mediation:mobileads-google:25.2.0.1'
   ```

3. Add your `AdMob ID` to your app's **AndroidManifest.xml** file using the `<meta-data>` tag named `com.google.android.gms.ads.APPLICATION_ID` (learn more about how to [find the AdMob ID](https://support.google.com/admob/answer/7356431)).
   ```xml
   <manifest>
       <application>
    ...
           <meta-data
               android:name="com.google.android.gms.ads.APPLICATION_ID"
               android:value="ca-app-pub-xxxxxxxxxxxxxxxx~yyyyyyyyyy"/>
    ...
       </application>
   </manifest>
   ```
<!-- endsource: en/ad-monetization/dev/_includes/admob-android.md -->
