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