update: 更新 Deeplink 接口和相关的功能

--story=1021486 --user=yufei.hu 【中台】【Deeplink】兼容 1.0.11.1 实现的 Deeplink Callback 的功能, 应用在当前的版本上(QA 无需测试) https://www.tapd.cn/33527076/s/1164091
胡宇飞 2024-08-13 18:48:19 +08:00
parent 0021e47ac1
commit 966327bd54
2 changed files with 6 additions and 0 deletions

View File

@ -2,6 +2,7 @@ namespace Guru
{
using System.Collections.Generic;
using System.Text;
using System;
/// <summary>
/// 启动参数配置
/// </summary>
@ -28,6 +29,10 @@ namespace Guru
/// </summary>
public string CustomServiceKey = "";
/// <summary>
/// DeepLink 回调
/// </summary>
public Action<string> OnDeeplinkCallback;
/// <summary>
/// Banner 背景颜色 Hex 值
/// </summary>
public string BannerBackgroundColor = "#00000000";

View File

@ -94,6 +94,7 @@ namespace Guru
bool autoRecordFinishedLevels = true,
bool debugMode = false,
bool isBuyNoAds = false,
Action<string> onDeeplinkCallback = null,
string bannerColor = "#00000000",
Dictionary<string, object> defaultRemoteData = null,
byte[] googleKeys = null,