1

我正在尝试将 Applovin Ads 添加到统一项目中,并且需要添加新的播放服务 sdks

将 Google Play 服务添加到您的应用程序

由于 Google 的新要求,您需要将 Google Play Services SDK 集成到您的应用中。

这是强制性的;如果没有 Google Play 服务,SDK 将无法运行。

当我联系 applovin 时,他们要求我将此库添加到我的项目中

com.google.android.gms:play-services-games

我该怎么做?我没有使用 android studio,直接从统一引擎导出。

4

1 回答 1

1

来自applovin的回答

如果您还没有使用自定义 mainTemplate.gradle,您可以Android PlayerSettingsPublishing>Custom Main Gradle Template. Add this line to your mainTemplate.gradlefile 下方启用它:

implementation 'com.google.android.gms:play-services-ads-identifier:16.0.0'

例子:

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.google.android.gms:play-services-ads-identifier:16.0.0'
**DEPS**}

这些步骤适用于任何 SDK 实现,请考虑自己在 Gradle 文件中。

于 2020-10-30T12:27:38.070 回答