---
metadata:
  - name: generator
    content: Diplodoc Platform v5.57.3
alternate:
  - https://boost.yandex.com/doc/en/ad-monetization/dev/unity7/admob.md
  - https://boost.yandex.com/doc/ru/ad-monetization/dev/unity7/admob.md
  - href: en/ad-monetization/dev/unity7/admob.md
    type: text/markdown
    title: Markdown version
  - href: llms.txt
    type: text/markdown
    title: llms.txt
---
> **Documentation Index:** Fetch the complete configuration index at https://boost.yandex.com/doc/en/llms.txt

<!--
Используется в Boost: boost/en/ad-monetization/dev/unity
-->

# Enabling Google



## Supported ad formats {#formats}

- [Adaptive inline banners](https://boost.yandex.com/doc/en/ad-monetization/dev/unity7/adaptive-inline-banner.md)
- [Adaptive sticky banners](https://boost.yandex.com/doc/en/ad-monetization/dev/unity7/adaptive-sticky-banner.md)
- [Interstitial ads](https://boost.yandex.com/doc/en/ad-monetization/dev/unity7/interstitial.md)
- [Rewarded ads](https://boost.yandex.com/doc/en/ad-monetization/dev/unity7/rewarded.md)

## Integration {#integration}

1. [Configure mediation](https://boost.yandex.com/doc/en/ad-monetization/monetization/yandex-mediation/setup.md) in the Boost interface and your advertising network account.
2. Import the package `yandex-mobileads-lite-7.18.2.unitypackage` to your project.
3. Import `mobileads-google-mediation-7.18.2.unitypackage` from the **mobileads-mediation** directory.
4. Create the main file **AndroidManifest.xml** via **File** → **Build Settings** → **Android** → **Player Settings** → **Publishing Settings** → **Custom Main Manifest** (check the box).

   Add your Google AdMob ID to the created **AndroidManifest.xml** app file using the `<meta-data>` tag named `com.google.android.gms.ads.APPLICATION_ID`. Learn more about where you can [find the AdMob ID](https://support.google.com/admob/answer/7356431).

   ```html
   <manifest>
       <application>
   ...
           <meta-data
               android:name="com.google.android.gms.ads.APPLICATION_ID"
               android:value="ca-app-pub-xxxxxxxxxxxxxxxx~yyyyyyyyyy"/>
   ...
       </application>
   </manifest>
   ```
