您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
138 行
5.3 KiB
138 行
5.3 KiB
using System.Collections;
|
|
using HuaweiHms;
|
|
using UnityEngine;
|
|
|
|
namespace HuaweiHmsDemo
|
|
{
|
|
public class RemoteConfigTest : Test<RemoteConfigTest>
|
|
{
|
|
private AGConnectConfig config;
|
|
public static bool develporMode;
|
|
|
|
public override void RegisterEvent(TestEvent registerEvent)
|
|
{
|
|
registerEvent("set xml Value", SetXmlValue);
|
|
registerEvent("set map Value", SetMapValue);
|
|
registerEvent("Get Cloud Settings", GetCloudSettings);
|
|
registerEvent("Get Cloud Settings work next time", GetCloudSettingsWorkNextTime);
|
|
registerEvent("Get Cloud Settings - 5 mins", GetCloudSettingsFiveMins);
|
|
registerEvent("Switch Developer Mode", SetDeveloperMode);
|
|
registerEvent("Clear Cache", ClearCache);
|
|
registerEvent("Get Value Source", GetAllValueWithSource);
|
|
}
|
|
|
|
public void SetXmlValue()
|
|
{
|
|
config = AGConnectConfig.getInstance();
|
|
int configId = AndroidUtil.GetId(new Context(), "xml", "remote_config");
|
|
config.applyDefault(configId);
|
|
showAllValues();
|
|
}
|
|
|
|
public void SetMapValue()
|
|
{
|
|
config = AGConnectConfig.getInstance();
|
|
HashMap map = new HashMap();
|
|
map.put("test2", "true");
|
|
map.put("test3", 222);
|
|
map.put("test4", 666.456);
|
|
map.put("test5", "fromMap");
|
|
|
|
config.applyDefault(map.toType<Map>());
|
|
showAllValues();
|
|
}
|
|
|
|
|
|
public void GetCloudSettings()
|
|
{
|
|
config = AGConnectConfig.getInstance();
|
|
config.fetch().addOnSuccessListener(new HmsSuccessListener<ConfigValues>((ConfigValues configValues) =>
|
|
{
|
|
config.apply(configValues);
|
|
TestTip.Inst.ShowText("activity success");
|
|
TestTip.Inst.ShowText($"configValues contains {configValues.containKey("CloudBool")}");
|
|
TestTip.Inst.ShowText($"configValues as string {configValues.getValueAsString("CloudString")}");
|
|
TestTip.Inst.ShowText($"configValues as byte first byte {configValues.getValueAsByteArray("CloudByte")[0]}");
|
|
TestTip.Inst.ShowText($"configValues as long {configValues.getValueAsLong("CloudLong").longValue()}");
|
|
TestTip.Inst.ShowText($"configValues as double {configValues.getValueAsDouble("CloudDouble").doubleValue()}");
|
|
TestTip.Inst.ShowText($"configValues as bool {configValues.getValueAsBoolean("CloudBool").booleanValue()}");
|
|
|
|
showAllValues();
|
|
}))
|
|
.addOnFailureListener(new HmsFailureListener((Exception e) =>
|
|
{
|
|
TestTip.Inst.ShowText("activity failure " + e.toString());
|
|
}));
|
|
}
|
|
|
|
public void GetCloudSettingsWorkNextTime()
|
|
{
|
|
config = AGConnectConfig.getInstance();
|
|
ConfigValues configValues = config.loadLastFetched();
|
|
config.apply(configValues);
|
|
config.fetch().addOnSuccessListener(new HmsSuccessListener<ConfigValues>((ConfigValues o) =>
|
|
{
|
|
TestTip.Inst.ShowText("activity success");
|
|
}))
|
|
.addOnFailureListener(new HmsFailureListener((Exception e) =>
|
|
{
|
|
TestTip.Inst.ShowText("activity failure " + e.toString());
|
|
}));
|
|
showAllValues();
|
|
}
|
|
|
|
public void GetCloudSettingsFiveMins()
|
|
{
|
|
config = AGConnectConfig.getInstance();
|
|
config.fetch(300).addOnSuccessListener(new HmsSuccessListener<ConfigValues>((ConfigValues configValues) =>
|
|
{
|
|
config.apply(configValues);
|
|
TestTip.Inst.ShowText("activity success");
|
|
}))
|
|
.addOnFailureListener(new HmsFailureListener((Exception e) =>
|
|
{
|
|
TestTip.Inst.ShowText("activity failure " + e.toString());
|
|
}));
|
|
showAllValues();
|
|
}
|
|
|
|
public void SetDeveloperMode()
|
|
{
|
|
config = AGConnectConfig.getInstance();
|
|
develporMode = !develporMode;
|
|
config.setDeveloperMode(develporMode);
|
|
TestTip.Inst.ShowText($"set developer mode to {develporMode}");
|
|
}
|
|
|
|
public void ClearCache()
|
|
{
|
|
config = AGConnectConfig.getInstance();
|
|
config.clearAll();
|
|
TestTip.Inst.ShowText("Cache is cleared.");
|
|
}
|
|
|
|
private void showAllValues()
|
|
{
|
|
config = AGConnectConfig.getInstance();
|
|
Map map = config.getMergedAll();
|
|
var keySet = map.keySet();
|
|
var keyArray = keySet.toArray();
|
|
foreach (var key in keyArray)
|
|
{
|
|
TestTip.Inst.ShowText($"{key}: {map.getOrDefault(key, "default")}");
|
|
}
|
|
}
|
|
|
|
private void GetAllValueWithSource()
|
|
{
|
|
config = AGConnectConfig.getInstance();
|
|
Map map = config.getMergedAll();
|
|
var keySet = map.keySet();
|
|
var keyArray = keySet.toArray();
|
|
foreach (var key in keyArray)
|
|
{
|
|
TestTip.Inst.ShowText($"{key}: {config.getSource(key)}");
|
|
}
|
|
}
|
|
}
|
|
}
|