---
metadata:
  - name: generator
    content: Diplodoc Platform v5.52.0
alternate:
  - https://ads.yandex.com/helpcenter/en/dev/unity7/admob.md
  - https://ads.yandex.com/helpcenter/ru/dev/unity7/admob.md
  - href: en/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://ads.yandex.com/helpcenter/en/llms.txt

# Google integration



## Supported ad formats {#formats}

- [Adaptive inline banner](https://ads.yandex.com/helpcenter/en/dev/unity7/adaptive-inline-banner.md)
- [Adaptive sticky banner](https://ads.yandex.com/helpcenter/en/dev/unity7/adaptive-sticky-banner.md)
- [Interstitial advertising](https://ads.yandex.com/helpcenter/en/dev/unity7/interstitial.md)
- [Rewarded ads](https://ads.yandex.com/helpcenter/en/dev/unity7/rewarded.md)

## Integration {#integration}

1. [Set up mediation](https://ads.yandex.com/helpcenter/en/monetization/yandex-mediation/setup.md) in the Yandex Advertising Network interface and other network interface.
2. Import the package `yandex-mobileads-lite-7.18.2.unitypackage` to the project.
3. Import `mobileads-google-mediation-7.18.2.unitypackage` from the **mobileads-mediation** directory.
4. Create the main **AndroidManifest.xml** file using **File** → **Build Settings** → **Android** → **Player Settings** → **Publishing Settings** → **Custom Main Manifest** (check the box).

   Add your Google AdMob (ex. AdMob) ID to the **AndroidManifest.xml** file created for your app using the `<meta-data>` tag named `com.google.android.gms.ads.APPLICATION_ID` (here's how to find your [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>
   ```
