Unreal Engine 4
按照以下说明,创建并配置hive_config.xml文件。该文件将创建在以下路径中。有关更多详细信息,请参阅基本配置指南。
- 安卓
/HIVESDK/Source/HIVESDK/ThirdParty/android/resource/res/raw/hive_config.xml
- iOS
/HIVESDK/Source/HIVESDK/ThirdParty/iOS/resource/hive_config.xml
- Windows
/HIVESDK/Source/HIVESDK/ThirdParty/Windows/config/hive_config.xml
使用虚幻编辑器进行设置¶
在虚幻环境中,您可以使用虚幻编辑器自动创建并分配设置到hive_config.xml文件。点击虚幻编辑器菜单中的编辑 > 项目设置。项目设置窗口将出现。在项目设置窗口的左侧面板中,点击插件标题下的HIVEConfig XML菜单。HIVEConfig XML设置屏幕将出现。
Google Play 设置¶
要使用通用 Google 登录,请在 Google Play 设置字段 Google Play 应用 ID 中输入从 Google 控制台获得的 AppID。
HiveConfig 设置¶
在 HIVEConfig XML 设置屏幕中,您可以在 hive_config.xml 文件中的 可配置值 中设置以下值。例如,要在 Unreal Android 环境中使用 Google Play 商店支付,请将 Market
值设置为 GO
,要在 Unreal iOS 环境中使用 Apple AppStore 支付,请将其设置为 AP
。
<
字段 | 描述 | 值范围 |
---|---|---|
区域 | Hive 服务器环境 |
|
日志记录 | 是否为 Hive 客户端内部操作启用日志 |
|
推送 | 是否使用 Hive 平台提供的推送服务 |
|
公司 | 游戏发行公司 |
|
渠道 | 游戏应用使用的登录服务平台 | Hive(默认) |
市场 | 该应用将发布的市场 |
|
hive_config.xml 示例¶
以下是使用身份验证(Google 身份验证)和支付(Google Play 商店或 Apple AppStore)时的 hive_config.xml 文件示例。根据您想要使用的 Hive SDK 功能和应用环境修改、添加或删除值。由于 iOS 仅支持 Apple AppStore 支付,因此在 Unreal iOS 环境中将市场设置为 AP
。
<properties>
<!-- Common settings for Hive SDK: START -->
<appId>com.sample.your</appId>
<gameLanguage>en</gameLanguage>
<!-- Select the server of the Hive platform. sandbox is for development, real is for production
(sandbox, real) -->
<zone>real</zone>
<!-- Set whether to use SDK internal operation logs
(true, false) -->
<useLog>false</useLog>
<!-- Company settings
(C2S: Com2us, GVI: Com2us Holdings) -->
<company>C2S</company>
<!-- Channel settings
(C2S: Hive platform) -->
<channel>C2S</channel>
<!-- Payment market settings
(GO: Google Play, LE: Com2us Lebi, AP: Apple App Store) -->
<market>GO</market>
<!-- Set the HTTP Connect Timeout time used inside the Hive SDK in seconds
(Do not change unless in special cases) -->
<httpConnectTimeout>8</httpConnectTimeout>
<!-- Set the HTTP Read Timeout time used inside the Hive SDK in seconds
(Do not change unless in special cases) -->
<httpReadTimeout>8</httpReadTimeout>
<agreementDetermineBase>device</agreementDetermineBase>
<!-- Common settings for Hive SDK: END -->
<!-- Settings for each Hive SDK feature: START -->
<!-- Authentication product settings: Using Google authentication -->
<providers>
<google playAppId="123456789012" clientId="123456789012-abc.apps.googleusercontent.com" serverClientId="123456789012-abc.apps.googleusercontent.com" reversedClientId="com.googleusercontent.apps.123456789012-abc" deviceFlowClientId="331526026701-gn1abq1ev23nqj7rdvvlaamf7ii4f3u9.apps.googleusercontent.com" />
</providers>
<!-- Settings for each Hive SDK feature: END -->
</properties>
Info
Hive SDK 设置可以通过在构建应用程序之前将值保存在配置文件中,或通过在运行时(应用程序执行期间)更改设置来进行配置。有关更多详细信息,请参阅 Hive SDK 设置。