将 Vpon 与中介集成
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
本指南适用于有兴趣将 Google 移动广告中介与 Vpon 搭配使用发布商。该部分将详细介绍如何设置调节适配器以与您当前的 Android 应用搭配使用,以及如何配置其他设置。
前提条件
实用指南
以下帮助中心文章提供了有关调解的背景信息:
将 Vpon 添加到您的项目
添加网络适配器和 SDK
从上文中的链接下载 Vpon SDK 和适配器。
在 Android Studio 中,将适配器和 SDK 文件添加到项目的 libs
文件夹中。确保您的应用级 Gradle 文件包含以下内容:
Kotlin
dependencies {
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.aar", "*.jar"))))
// ...
}
Groovy
dependencies {
implementation fileTree(dir: 'libs', include: ['*.aar', '*.jar'])
// ...
}
按照 Vpon 文档中的说明修改 AndroidManifest.xml
文件。
您的应用无需直接调用 Vpon,Google 移动广告 SDK 会调用 Vpon 适配器,代表您提取广告。如有必要,您可以指定任何其他请求参数。本页的其余部分将详细介绍如何向 Vpon 提供更多信息。
使用 activity 实例初始化您的广告对象
在新广告对象(例如 AdView
)的构造函数中,您必须传入类型为 Context
的对象。使用中介时,此 Context
会传递到其他广告联盟。某些广告联盟需要类型为 Activity
且条件更严格的 Context
,并且如果没有 Activity
实例,可能无法投放广告。因此,我们建议在初始化广告对象时传入 Activity
实例,以确保从您的所有中介广告联盟获得一致的体验。
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-11-23。
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2024-11-23。"],[[["This guide helps publishers integrate Vpon ads into their Android apps using Google Mobile Ads mediation."],["It outlines the process of setting up the Vpon adapter and configuring necessary settings."],["Publishers need an existing Android app with the Google Mobile Ads SDK and an AdMob account with ad units for mediation."],["The guide includes instructions on adding the Vpon SDK and adapter, configuring the AndroidManifest.xml, and initializing ad objects."],["It's crucial to use an `Activity` instance when initializing ad objects for optimal compatibility with mediated ad networks."]]],[]]