SDK 使用指南 > SDK 开发流程 > 开始 > SDK 安装 > Cocos2d-x 本指南解释了如何在 Cocos2d-x 环境中安装 Hive SDK。 安卓¶ 从 Hive 开发者网站下载包,路径为 下载 > Cocos2d-x。 将在 /PluginSource/Android 路径下找到的 C++ 源代码文件链接到您的项目中。您可以链接位于 /proj.android/app/jni/hivesdk/lib/c++ 路径下的已编译库,而不是链接 .cpp 源代码文件。 将以下 Android 库添加到您的 Gradle 项目的模块级 build.gradle 文件中。 dependencies { implementation(platform("com.com2us.android.hive:hive-sdk-bom:${project.HIVE_SDK_VERSION}")) implementation "com.com2us.android.hive:hive-sdk" implementation "com.com2us.android.hive:hive-plugin-java" } iOS¶ 要为 iOS 安装 Cocos2d-x,首先请按照 Hive SDK iOS 指南 设置您的项目 Podfile。然后,在 Podfile 设置中,添加 HiveSDKPlugin,如下所示。 ... target 'HIVE_SDK_Sample_App' do # Add the frameworks to use here. At least one framework is required. # Hive SDK C++ language interface plugin framework, required when using Hive SDK Cocos2d-x iOS pod 'HiveSDKPlugin', $HIVE_SDK_VERSION end ...