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 App 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>
<!-- 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 設定。