Unreal Engine 5
根据以下说明,创建并配置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 Store支付,将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>
<!-- Hive SDK Common Settings: START -->
<appId>com.sample.your</appId>
<gameLanguage>en</gameLanguage>
<!-- Select Hive platform server. sandbox for development, real for production
(sandbox, real) -->
<zone>real</zone>
<!-- Set whether to use internal operation logs of the SDK
(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 used internally by the Hive SDK in seconds
(Do not change unless in special cases) -->
<httpConnectTimeout>8</httpConnectTimeout>
<!-- Set the HTTP Read Timeout used internally by the Hive SDK in seconds
(Do not change unless in special cases) -->
<httpReadTimeout>8</httpReadTimeout>
<agreementDetermineBase>device</agreementDetermineBase>
<!-- Hive SDK Common Settings: END -->
<!-- Hive SDK Feature-specific Settings: START -->
<!-- Authentication product settings: Use 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>
<!-- Hive SDK Feature-specific Settings: END -->
</properties>
Info
Hive SDK 设置可以在应用构建之前保存在配置文件中,或在运行时(应用执行期间)更改。有关更多详细信息,请参阅 Hive SDK 设置。