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

# Google 集成



## 支持的广告格式 {#formats}

- [自适应内联横幅](https://ads.yandex.com/helpcenter/zh/dev/compose-multiplatform/adaptive-inline-banner.md)
- [自适应粘性横幅](https://ads.yandex.com/helpcenter/zh/dev/compose-multiplatform/adaptive-sticky-banner.md)
- [插屏广告](https://ads.yandex.com/helpcenter/zh/dev/compose-multiplatform/interstitial.md)
- [激励广告](https://ads.yandex.com/helpcenter/zh/dev/compose-multiplatform/rewarded.md)

## 集成 {#integration}

{% list tabs %}

- Android

   1. 在 Yandex Advertising Network 界面和其他网络界面中[设置聚合](https://ads.yandex.com/helpcenter/zh/monetization/yandex-mediation/setup.md)。

   2. 将依赖项添加到应用级别的 build.gradle.kts 文件中的 `androidMain.dependencies` 块：
      ```kotlin
      implementation("com.yandex.android:mobileads:8.3.0")
      implementation("com.yandex.ads.mediation:mobileads-google:25.2.0.2")
      ```

   3. 使用名为 `com.google.android.gms.ads.APPLICATION_ID` 的 `<meta-data>` 标签向应用的 **AndroidManifest.xml** 文件添加 `AdMob ID`（详细了解如何[查找 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>
      ```

- iOS

   <!-- source: zh/dev/_includes/admob-ios.md -->
   {% note info %}

   要在移动聚合中跟踪应用安装，您需要为适配器配置 Info.plist。请按照广告网络 [文档](https://developers.google.com/admob/ios/ios14) 进行操作。

   {% endnote %}

   要使用 [Google](https://admob.google.com/home/)，您需要添加 `GoogleYandexMobileAdsAdapters` 库。

   `GoogleYandexMobileAdsAdapters` 库已进行了修改。它现在可与 CocoaPods 依赖管理系统进行互操作并支持静态集成方法。

   1. 在 Yandex Advertising Network 界面和其他网络界面中 [设置聚合](https://ads.yandex.com/helpcenter/zh/monetization/yandex-mediation/setup.md)。

   2. 要连接库，请将依赖项添加到项目的 Podfile 中：
      ```
      pod 'GoogleYandexMobileAdsAdapters', '13.3.0.2'
      ```

   3. 在应用的 Info.plist 文件中，添加字符串值为 `AdMob ID` 的 `GADApplicationIdentifier` 键（详细了解如何 [查找 AdMob ID](https://support.google.com/admob/answer/7356431)）。
      ```xml
      <key>GADApplicationIdentifier</key>
      <string>ca-app-pub-xxxxxxxxxxxxxxxx~yyyyyyyyyy</string>
      ```
   <!-- endsource: zh/dev/_includes/admob-ios.md -->

{% endlist %}
