update: 更新 Deeplink 接口和相关的功能
--story=1021486 --user=yufei.hu 【中台】【Deeplink】兼容 1.0.11.1 实现的 Deeplink Callback 的功能, 应用在当前的版本上(QA 无需测试) https://www.tapd.cn/33527076/s/1164091
parent
0021e47ac1
commit
966327bd54
|
|
@ -2,6 +2,7 @@ namespace Guru
|
||||||
{
|
{
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
using System;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 启动参数配置
|
/// 启动参数配置
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
@ -28,6 +29,10 @@ namespace Guru
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string CustomServiceKey = "";
|
public string CustomServiceKey = "";
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// DeepLink 回调
|
||||||
|
/// </summary>
|
||||||
|
public Action<string> OnDeeplinkCallback;
|
||||||
|
/// <summary>
|
||||||
/// Banner 背景颜色 Hex 值
|
/// Banner 背景颜色 Hex 值
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string BannerBackgroundColor = "#00000000";
|
public string BannerBackgroundColor = "#00000000";
|
||||||
|
|
|
||||||
|
|
@ -94,6 +94,7 @@ namespace Guru
|
||||||
bool autoRecordFinishedLevels = true,
|
bool autoRecordFinishedLevels = true,
|
||||||
bool debugMode = false,
|
bool debugMode = false,
|
||||||
bool isBuyNoAds = false,
|
bool isBuyNoAds = false,
|
||||||
|
Action<string> onDeeplinkCallback = null,
|
||||||
string bannerColor = "#00000000",
|
string bannerColor = "#00000000",
|
||||||
Dictionary<string, object> defaultRemoteData = null,
|
Dictionary<string, object> defaultRemoteData = null,
|
||||||
byte[] googleKeys = null,
|
byte[] googleKeys = null,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue