将 Flurry 与中介集成
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
本指南面向有兴趣将 Google 移动广告中介与 Flurry 搭配使用发布商。步行
设置中介适配器,使其适用于您当前的 Android 应用
以及配置其他设置
前提条件
实用指南
以下帮助中心文章提供了有关调解的背景信息:
将 Flurry 添加到您的项目中
添加网络适配器和 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'])
// ...
}
按照AndroidManifest.xml
Flurry 文档。
您的应用无需直接调用 Flurry,Google 移动广告 SDK 会调用 Flurry 适配器,代表您提取广告。如有必要,您可以
指定任何其他请求参数。
本页的其余部分详细介绍了如何
如风而扬。
使用 activity 实例初始化您的广告对象
在新广告对象(例如 AdView
)的构造函数中,您必须传入类型为 Context
的对象。使用中介时,此 Context
会传递到其他广告联盟。部分
广告联盟需要更严格的 Context
类型
Activity
如果没有 Activity
实例,可能无法投放广告。因此,
我们建议在初始化广告对象时传入 Activity
实例
以确保中介广告联盟获得一致的体验。
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-10-10。
[[["易于理解","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-10-10。"],[[["This guide explains how publishers can integrate Flurry ads into their Android apps using Google Mobile Ads mediation."],["You'll need an Android app with the Google Mobile Ads SDK and an AdMob account with configured mediation line items to get started."],["The guide provides steps to add the Flurry SDK and adapter to your project, configure your AndroidManifest.xml, and initialize your ad object with an Activity instance."],["This integration allows the Google Mobile Ads SDK to automatically call the Flurry adapter to fetch ads for your app."]]],[]]