fix: 修复 Android 接口参数顺序

Signed-off-by: huyufei <yufei.hu@castbox.fm>
胡宇飞 2024-08-07 14:01:24 +08:00
parent ac96959649
commit daeda6542e
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ namespace Guru
bool useCronet = false)
{
string uploadIpAddressStr= string.Join(",", uploadIpAddress ?? Array.Empty<string>());
CallStatic("init", appId, deviceInfo, bundleId, isDebug, useWorker, baseUrl, uploadIpAddressStr, useCronet); // 调用接口 1.12.0 参数顺序有调整
CallStatic("init", appId, deviceInfo, bundleId, isDebug, baseUrl, uploadIpAddressStr, useWorker, useCronet); // 调用接口 1.12.0 参数顺序有调整
}
public void SetScreen(string screenName)