将 android SDK 中的特定库添加到统一项目
Add specific library from android SDK to unity project
我正在尝试将 Applovin Ads 添加到 unity 项目中,并且需要添加播放服务 sdks
Add Google Play Services to your App
Due to new requirements by Google, you'll need to integrate the Google
Play Services SDK into your app.
This is mandatory; without Google Play Services, the SDK cannot
function.
当我联系 applovin 时,他们要求我将这个库添加到我的项目中
com.google.android.gms:play-services-games
我该怎么做?我没有使用 android 工作室,直接从 unity 引擎导出。
applovin 的回答
如果您尚未使用自定义 mainTemplate.gradle,您可以在 Publishing>Custom Main Gradle Template.
下的 Android PlayerSettings
中启用它
将此行添加到您的 mainTemplate.gradle
文件中:
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 文件中。
我正在尝试将 Applovin Ads 添加到 unity 项目中,并且需要添加播放服务 sdks
Add Google Play Services to your App
Due to new requirements by Google, you'll need to integrate the Google Play Services SDK into your app.
This is mandatory; without Google Play Services, the SDK cannot function.
当我联系 applovin 时,他们要求我将这个库添加到我的项目中
com.google.android.gms:play-services-games
我该怎么做?我没有使用 android 工作室,直接从 unity 引擎导出。
applovin 的回答
如果您尚未使用自定义 mainTemplate.gradle,您可以在 Publishing>Custom Main Gradle Template.
下的 Android PlayerSettings
中启用它
将此行添加到您的 mainTemplate.gradle
文件中:
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 文件中。