提交项目
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 42b11239795a857438cebb0b42577408
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 51f8b691978644845a59d4da09bb72e3
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,33 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1 &7999829969770386720
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 520568642914021788}
|
||||
m_Layer: 0
|
||||
m_Name: Demo
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &520568642914021788
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 7999829969770386720}
|
||||
serializedVersion: 2
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5597cf0c8207a4448a9e84a8800d5cad
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,231 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using RGKT2NIYSDK;
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
using Random = UnityEngine.Random;
|
||||
|
||||
public class RGKT2NIYSDKDemo : MonoBehaviour
|
||||
{
|
||||
public void ShowReward()
|
||||
{
|
||||
RGKT2NIYSDKUtility.Instance.ShowRewardVideo("TAG", b =>
|
||||
{
|
||||
Debug.LogError($"reward result = {b}");
|
||||
},(() =>
|
||||
{
|
||||
Debug.LogError($"reward close!!!");
|
||||
}));
|
||||
}
|
||||
|
||||
public void ShowInter()
|
||||
{
|
||||
RGKT2NIYSDKUtility.Instance.ShowInter("TAG", () =>
|
||||
{
|
||||
Debug.LogError("inter hide");
|
||||
});
|
||||
}
|
||||
|
||||
public void ShowAdmobInter()
|
||||
{
|
||||
RGKT2NIYSDKUtility.Instance.ShowAdmobInter("TAG", () =>
|
||||
{
|
||||
Debug.LogError("inter hide");
|
||||
});
|
||||
}
|
||||
|
||||
public void ShowSplash()
|
||||
{
|
||||
RGKT2NIYSDKUtility.Instance.ShowSplash();
|
||||
}
|
||||
|
||||
public void CheckReward(Image btnImg)
|
||||
{
|
||||
var isReady = RGKT2NIYSDKUtility.Instance.IsVideoReady();
|
||||
btnImg.color = isReady ? Color.green : Color.white;
|
||||
Debug.Log($"Reward : {isReady}");
|
||||
}
|
||||
|
||||
public void CheckInter(Image btnImg)
|
||||
{
|
||||
var isReady = RGKT2NIYSDKUtility.Instance.IsInterReady();
|
||||
btnImg.color = isReady ? Color.green : Color.white;
|
||||
Debug.Log($"Inter : {isReady}");
|
||||
}
|
||||
|
||||
public void CheckSplash(Image btnImg)
|
||||
{
|
||||
var isReady = RGKT2NIYSDKUtility.Instance.IsSplashReady();
|
||||
btnImg.color = isReady ? Color.green : Color.white;
|
||||
Debug.Log($"Splash : {isReady}");
|
||||
}
|
||||
|
||||
public void Track()
|
||||
{
|
||||
RGKT2NIYSDKUtility.Instance.Track("test", new Dictionary<string, string>()
|
||||
{
|
||||
{"evt1", "1"},
|
||||
{"evt2", "2"},
|
||||
{"evt3", "3"},
|
||||
{"evt4", "4"},
|
||||
{"evt5", "5"},
|
||||
{"evt6", "6"},
|
||||
{"evt7", "7"},
|
||||
{"evt8", "8"},
|
||||
{"evt9", "9"},
|
||||
});
|
||||
|
||||
|
||||
}
|
||||
|
||||
public void GetCountryCode()
|
||||
{
|
||||
|
||||
var code = RGKT2NIYSDKUtility.Instance.GetCountryCode();
|
||||
Debug.Log($"country : {code}");
|
||||
}
|
||||
|
||||
public void ShowH5()
|
||||
{
|
||||
RGKT2NIYSDKUtility.Instance.H5.ShowH5((() =>
|
||||
{
|
||||
Debug.Log("H5 close");
|
||||
}), () =>
|
||||
{
|
||||
Debug.Log($"H5 show failed!");
|
||||
});
|
||||
}
|
||||
|
||||
public void ShowH5(RectTransform rectTransform)
|
||||
{
|
||||
RGKT2NIYSDKUtility.Instance.H5.ShowH5(rectTransform);
|
||||
}
|
||||
|
||||
public void HideH5()
|
||||
{
|
||||
RGKT2NIYSDKUtility.Instance.H5.HideH5();
|
||||
}
|
||||
|
||||
public void CheckShowH5(Image btnImg)
|
||||
{
|
||||
var show = RGKT2NIYSDKUtility.Instance.H5.IsShowH5();
|
||||
btnImg.color = show ? Color.green : Color.red;
|
||||
Debug.Log($"CheckShowH5 : {show}");
|
||||
}
|
||||
|
||||
private int _level = 1;
|
||||
public void TrackLevel()
|
||||
{
|
||||
RGKT2NIYSDKUtility.Instance.TrackLevelUp(_level);
|
||||
if (Random.Range(0, 100) < 50)
|
||||
{
|
||||
_level++;
|
||||
}
|
||||
}
|
||||
|
||||
private string withDrawSceneId = "";
|
||||
public void GetWithDrawConfigs()
|
||||
{
|
||||
RGKT2NIYSDKUtility.Instance.GetWithDrawConfigs(((b, s) =>
|
||||
{
|
||||
Debug.Log($"GetWithDrawConfigs result : {b}, data : {s}");
|
||||
if (b)
|
||||
{
|
||||
var cfgs = JsonConvert.DeserializeObject<List<WithDrawConfig>>(s);
|
||||
int idx = 0;
|
||||
foreach (WithDrawConfig config in cfgs)
|
||||
{
|
||||
Debug.Log($"index = {idx}, {config.ToString()}");
|
||||
if (idx == 0)
|
||||
withDrawSceneId = config.SecneId;
|
||||
idx++;
|
||||
}
|
||||
}
|
||||
|
||||
}));
|
||||
}
|
||||
|
||||
private int payIndex = 0;
|
||||
public void CreateWithDrawOrder()
|
||||
{
|
||||
string taxNo = "";
|
||||
string payAccount = "tom@gmail.com";
|
||||
string accountType = "E";
|
||||
PaymentTypeCode payCode = PaymentTypeCode.GOPAY;
|
||||
//GOPAY DANA 收款账号需要为电话号码
|
||||
if (payIndex == 1 || payIndex == 0)
|
||||
{
|
||||
payCode = payIndex == 1 ? PaymentTypeCode.DANA : payCode;
|
||||
payAccount = "0881234567890";
|
||||
accountType = "P";
|
||||
}
|
||||
if (payIndex == 2)
|
||||
{
|
||||
// PIX 需要填写税号
|
||||
payCode = PaymentTypeCode.PIX;
|
||||
taxNo = "99999999999";
|
||||
}
|
||||
if (payIndex == 3) payCode = PaymentTypeCode.MERCADOPAGO;
|
||||
RGKT2NIYSDKUtility.Instance.CreateWithDrawOrder(withDrawSceneId, payCode, payAccount, accountType, "testName", taxNo, b =>
|
||||
{
|
||||
Debug.Log($"CreateWithDrawOrder result : {b}");
|
||||
});
|
||||
|
||||
payIndex++;
|
||||
payIndex = payIndex > 3 ? 0 : payIndex;
|
||||
}
|
||||
|
||||
public void GetWithDrawOrders()
|
||||
{
|
||||
RGKT2NIYSDKUtility.Instance.GetWithDrawOrders(((b, s) =>
|
||||
{
|
||||
Debug.Log($"GetWithDrawOrders result : {b}, data : {s}");
|
||||
if (b)
|
||||
{
|
||||
var cfgs = JsonConvert.DeserializeObject<List<WithDrawOrder>>(s);
|
||||
int idx = 0;
|
||||
foreach (WithDrawOrder config in cfgs)
|
||||
{
|
||||
Debug.Log($"index = {idx}, {config.ToString()}");
|
||||
idx++;
|
||||
}
|
||||
}
|
||||
}));
|
||||
}
|
||||
|
||||
// Start is called before the first frame update
|
||||
void Start()
|
||||
{
|
||||
Init();
|
||||
|
||||
Invoke("ShowSplash", 5);
|
||||
}
|
||||
|
||||
// Update is called once per frame
|
||||
void Update()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void Init()
|
||||
{
|
||||
RGKT2NIYSDKUtility.Instance.RegistIosParam((i =>
|
||||
{
|
||||
Debug.Log($"ios ab param : {i}");
|
||||
}));
|
||||
|
||||
void GameConfig(bool result, string config)
|
||||
{
|
||||
Debug.Log($"************* game config result : {result}, config : {config}");
|
||||
}
|
||||
|
||||
RGKT2NIYSDKUtility.Instance.Init(null, "usegroupig", GameConfig);
|
||||
}
|
||||
|
||||
public static string GetSdkVersion()
|
||||
{
|
||||
return RGKT2NIYSDKUtility.SdkVersion;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 959ec24a7131c9d488e5007fa82612be
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 730a988606a036b4b92d1abb57c9d112
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,599 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Text.RegularExpressions;
|
||||
using RGKT2NIYSDK;
|
||||
using UnityEditor;
|
||||
using UnityEngine;
|
||||
|
||||
public class RGKT2NIYSDKConfigEditor : EditorWindow
|
||||
{
|
||||
private static RGKT2NIYSDKConfigEditor _view;
|
||||
|
||||
private int _emptyKwInterIdCount = 1;
|
||||
private int _emptyKwVideoIdCount = 1;
|
||||
|
||||
private int _emptyBigoInterIdCount = 1;
|
||||
private int _emptyBigoVideoIdCount = 1;
|
||||
|
||||
[MenuItem("Tools/设置 &G")]
|
||||
public static void ShowWin()
|
||||
{
|
||||
if (_view != null)
|
||||
{
|
||||
CloseView();
|
||||
return;
|
||||
}
|
||||
|
||||
var win = GetWindow<RGKT2NIYSDKConfigEditor>();
|
||||
win.minSize = new Vector2(790, 872);
|
||||
_view = win;
|
||||
RemoveExtraEmptyStrings(SDKConfig.KwaiInterUnitId, _view._emptyKwInterIdCount);
|
||||
RemoveExtraEmptyStrings(SDKConfig.KwaiVideoUnitId, _view._emptyKwVideoIdCount);
|
||||
RemoveExtraEmptyStrings(SDKConfig.BigoInterUnitId, _view._emptyBigoInterIdCount);
|
||||
RemoveExtraEmptyStrings(SDKConfig.BigoVideoUnitId, _view._emptyBigoVideoIdCount);
|
||||
win.Show();
|
||||
|
||||
}
|
||||
|
||||
static void CloseView()
|
||||
{
|
||||
_view.Close();
|
||||
_view = null;
|
||||
}
|
||||
|
||||
private void OnGUI()
|
||||
{
|
||||
DrawWindow();
|
||||
EditorUtility.SetDirty(SDKConfig.Instance);
|
||||
}
|
||||
|
||||
private void DrawWindow()
|
||||
{
|
||||
TextLabel("基础配置");
|
||||
EditorGUILayout.BeginVertical("frameBox");
|
||||
#if UNITY_IOS
|
||||
SDKConfig.Instance.appsFlyerDevKey = DrawTextField("appsFlyerDevKey", SDKConfig.Instance.appsFlyerDevKey);
|
||||
SDKConfig.Instance.appsFlyerIosAppleAppId = DrawTextField("appsFlyerIosAppleAppId", SDKConfig.Instance.appsFlyerIosAppleAppId);
|
||||
#elif UNITY_ANDROID
|
||||
SDKConfig.Instance.appsFlyerDevKey = DrawTextField("appsFlyerDevKey", SDKConfig.Instance.appsFlyerDevKey);
|
||||
#endif
|
||||
SDKConfig.Instance.logReportUrl = DrawTextField("配置域名", SDKConfig.Instance.logReportUrl);
|
||||
SDKConfig.Instance.appKey = DrawTextField("appKey", SDKConfig.Instance.appKey);
|
||||
SDKConfig.Instance.appSecret = DrawTextField("appSecret", SDKConfig.Instance.appSecret);
|
||||
|
||||
EditorGUILayout.EndVertical();
|
||||
|
||||
TextLabel("广告配置");
|
||||
|
||||
|
||||
#region MAX
|
||||
|
||||
EditorGUILayout.BeginVertical("frameBox");
|
||||
TextLabel("MAX", Color.cyan);
|
||||
SDKConfig.Instance.maxAppKey = DrawTextField("MaxSdkKey", SDKConfig.Instance.maxAppKey);
|
||||
SDKConfig.Instance.videoUnitId = DrawTextField("激励视频 ID", SDKConfig.Instance.videoUnitId);
|
||||
SDKConfig.Instance.interUnitId = DrawTextField("插屏 ID", SDKConfig.Instance.interUnitId);
|
||||
SDKConfig.Instance.bannerUnitId = DrawTextField("Banner ID", SDKConfig.Instance.bannerUnitId);
|
||||
SDKConfig.Instance.splashUnitId = DrawTextField("开屏 ID", SDKConfig.Instance.splashUnitId);
|
||||
EditorGUILayout.EndVertical();
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
#region Topon
|
||||
|
||||
// EditorGUILayout.BeginVertical("frameBox");
|
||||
// TextLabel("Topon", Color.cyan);
|
||||
// SDKConfig.Instance.toponAppId = DrawTextField("AppId", SDKConfig.Instance.toponAppId);
|
||||
// SDKConfig.Instance.toponAppkey = DrawTextField("Appkey", SDKConfig.Instance.toponAppkey);
|
||||
// SDKConfig.Instance.toponVideoUnitId = DrawTextField("激励视频 ID", SDKConfig.Instance.toponVideoUnitId);
|
||||
// SDKConfig.Instance.toponInterUnitId = DrawTextField("插屏 ID", SDKConfig.Instance.toponInterUnitId);
|
||||
// EditorGUILayout.EndVertical();
|
||||
|
||||
#endregion
|
||||
|
||||
#if UNITY_ANDROID
|
||||
|
||||
EditorGUILayout.BeginVertical("frameBox");
|
||||
EditorGUILayout.BeginHorizontal("frameBox");
|
||||
TextLabel("KWai", Color.cyan);
|
||||
DrawButton("插屏ID +", AddInterId);
|
||||
//DrawButton("插屏ID -", DelInterId);
|
||||
DrawButton("激励视频ID +", AddRewardId);
|
||||
//DrawButton("激励视频ID -", DelRewardId);
|
||||
EditorGUILayout.EndHorizontal();
|
||||
SDKConfig.Instance.kwaiAppId = DrawTextField("AppId", SDKConfig.Instance.kwaiAppId);
|
||||
|
||||
for (int i = 0; i < SDKConfig.Instance.kwaiInterUnitId.Count; i++)
|
||||
{
|
||||
var index = i;
|
||||
GUILayout.BeginHorizontal();
|
||||
SDKConfig.Instance.kwaiInterUnitId[i] =
|
||||
DrawTextField("插屏ID - " + (i + 1), SDKConfig.Instance.kwaiInterUnitId[i]);
|
||||
DrawButtonX("X", () => DelInterId(index));
|
||||
GUILayout.EndHorizontal();
|
||||
|
||||
}
|
||||
|
||||
for (int i = 0; i < SDKConfig.Instance.kwaiVideoUnitId.Count; i++)
|
||||
{
|
||||
var index = i;
|
||||
GUILayout.BeginHorizontal();
|
||||
SDKConfig.Instance.kwaiVideoUnitId[i] =
|
||||
DrawTextField("激励视频ID - " + (i + 1), SDKConfig.Instance.kwaiVideoUnitId[i]);
|
||||
DrawButtonX("X", () => DelRewardId(index));
|
||||
GUILayout.EndHorizontal();
|
||||
|
||||
}
|
||||
|
||||
EditorGUILayout.EndVertical();
|
||||
|
||||
EditorGUILayout.BeginVertical("frameBox");
|
||||
EditorGUILayout.BeginHorizontal("frameBox");
|
||||
TextLabel("Bigo", Color.cyan);
|
||||
DrawButton("插屏ID +", AddBigoInterId);
|
||||
DrawButton("激励视频ID +", AddBigoRewardId);
|
||||
EditorGUILayout.EndHorizontal();
|
||||
SDKConfig.Instance.bigoAppId = DrawTextField("AppId", SDKConfig.Instance.bigoAppId);
|
||||
SDKConfig.Instance.bigoSplashUnitId = DrawTextField("开屏 ID", SDKConfig.Instance.bigoSplashUnitId);
|
||||
|
||||
for (int i = 0; i < SDKConfig.Instance.bigoInterUnitId.Count; i++)
|
||||
{
|
||||
//SDKConfig.Instance.bigoInterUnitId = DrawTextField("插屏 ID", SDKConfig.Instance.bigoInterUnitId);
|
||||
var index = i;
|
||||
GUILayout.BeginHorizontal();
|
||||
SDKConfig.Instance.bigoInterUnitId[i] =
|
||||
DrawTextField("插屏ID - " + (i + 1), SDKConfig.Instance.bigoInterUnitId[i]);
|
||||
DrawButtonX("X", () => DelBigoInterId(index));
|
||||
GUILayout.EndHorizontal();
|
||||
}
|
||||
|
||||
for (int i = 0; i < SDKConfig.Instance.bigoVideoUnitId.Count; i++)
|
||||
{
|
||||
//SDKConfig.Instance.bigoVideoUnitId = DrawTextField("激励视频 ID", SDKConfig.Instance.bigoVideoUnitId);
|
||||
var index = i;
|
||||
GUILayout.BeginHorizontal();
|
||||
SDKConfig.Instance.bigoVideoUnitId[i] =
|
||||
DrawTextField("激励视频ID - " + (i + 1), SDKConfig.Instance.bigoVideoUnitId[i]);
|
||||
DrawButtonX("X", () => DelBigoRewardId(index));
|
||||
GUILayout.EndHorizontal();
|
||||
}
|
||||
|
||||
EditorGUILayout.EndVertical();
|
||||
#endif
|
||||
|
||||
|
||||
EditorGUILayout.BeginVertical("frameBox");
|
||||
SDKConfig.Instance.isUseAdmobSplash = DrawBoolField("启用开屏优化", SDKConfig.Instance.isUseAdmobSplash, "");
|
||||
if (SDKConfig.Instance.isUseAdmobSplash)
|
||||
{
|
||||
EditorGUILayout.BeginVertical("frameBox");
|
||||
TextLabel("Admob", Color.cyan);
|
||||
SDKConfig.Instance.admobAppId = DrawTextField("AppId", SDKConfig.Instance.admobAppId);
|
||||
SDKConfig.Instance.admobSplashUnitId = DrawTextField("开屏 ID", SDKConfig.Instance.admobSplashUnitId);
|
||||
//SDKConfig.Instance.admobInterUnitId = DrawTextField("插屏 ID", SDKConfig.Instance.admobInterUnitId);
|
||||
//SDKConfig.Instance.admobVideoUnitId = DrawTextField("激励视频 ID", SDKConfig.Instance.admobVideoUnitId);
|
||||
|
||||
EditorGUILayout.EndVertical();
|
||||
}
|
||||
else
|
||||
{
|
||||
SDKConfig.Instance.admobSplashUnitId = string.Empty;
|
||||
}
|
||||
EditorGUILayout.EndVertical();
|
||||
|
||||
TextLabel("Debug");
|
||||
EditorGUILayout.BeginVertical("frameBox");
|
||||
SDKConfig.Instance.isDebug = DrawBoolField("测试模式", SDKConfig.Instance.isDebug, "正式发布时请勿勾选");
|
||||
SDKConfig.Instance.isPrintLog = DrawBoolField("日志打印", SDKConfig.Instance.isPrintLog, "正式发布时请勿勾选");
|
||||
EditorGUILayout.EndVertical();
|
||||
|
||||
// 水平布局实现按钮靠右
|
||||
GUILayout.BeginHorizontal();
|
||||
GUILayout.FlexibleSpace(); // 左侧填充弹性空间
|
||||
if (GUILayout.Button(new GUIContent("从剪贴板获取参数", _tooltipText),
|
||||
GUILayout.Width(120),
|
||||
GUILayout.Height(30)
|
||||
))
|
||||
{
|
||||
ParseClipboard();
|
||||
}
|
||||
GUILayout.EndHorizontal();
|
||||
|
||||
|
||||
var sdkVersion = RGKT2NIYSDKUtility.SdkVersion;
|
||||
GUI.Label(new Rect(10, position.height - 40, 400, 40), "@version: " + sdkVersion);
|
||||
|
||||
EditorPrefs.SetString("sdk_version", sdkVersion);
|
||||
}
|
||||
|
||||
private string DrawTextField(string title, string content)
|
||||
{
|
||||
EditorGUILayout.BeginHorizontal();
|
||||
GUILayout.Label(title, GUILayout.MinWidth(90), GUILayout.ExpandWidth(false));
|
||||
content = GUILayout.TextField(content);
|
||||
EditorGUILayout.EndHorizontal();
|
||||
return content;
|
||||
}
|
||||
|
||||
private bool DrawBoolField(string title, bool content, string warn = "")
|
||||
{
|
||||
EditorGUILayout.BeginHorizontal();
|
||||
GUILayout.Label(title, GUILayout.MinWidth(80), GUILayout.ExpandWidth(false));
|
||||
content = EditorGUILayout.Toggle(content);
|
||||
if (content)
|
||||
{
|
||||
TextLabelWarn(warn);
|
||||
}
|
||||
EditorGUILayout.EndHorizontal();
|
||||
return content;
|
||||
}
|
||||
|
||||
private void TextLabel(string content, Color color = new Color())
|
||||
{
|
||||
if (color.Equals(Color.clear))
|
||||
{
|
||||
color = Color.gray;
|
||||
}
|
||||
GUIStyle style = new GUIStyle();
|
||||
style.contentOffset = new Vector2(8, 0);
|
||||
style.normal.textColor = color;
|
||||
style.fontSize = 14;
|
||||
style.padding = new RectOffset(0, 0, 3, 0);
|
||||
GUILayout.Label(content, style);
|
||||
}
|
||||
|
||||
private void TextLabelWarn(string content)
|
||||
{
|
||||
GUIStyle style = new GUIStyle();
|
||||
style.contentOffset = new Vector2(8, 0);
|
||||
style.normal.textColor = Color.red;
|
||||
style.fontSize = 14;
|
||||
style.padding = new RectOffset(0, 0, 3, 0);
|
||||
GUILayout.Label(content, style);
|
||||
}
|
||||
|
||||
private void DrawButton(string btnName, Action clickAction)
|
||||
{
|
||||
if (GUILayout.Button(btnName, GUILayout.Width(100), GUILayout.Height(30)))
|
||||
{
|
||||
clickAction?.Invoke();
|
||||
}
|
||||
}
|
||||
|
||||
private void DrawButtonX(string btnName, Action clickAction)
|
||||
{
|
||||
var originalBackgroundColor = GUI.backgroundColor;
|
||||
|
||||
// 设置按钮的背景颜色
|
||||
GUI.backgroundColor = Color.red;
|
||||
if (GUILayout.Button(btnName, GUILayout.Width(40), GUILayout.Height(18)))
|
||||
{
|
||||
clickAction?.Invoke();
|
||||
}
|
||||
|
||||
GUI.backgroundColor = originalBackgroundColor;
|
||||
}
|
||||
|
||||
private void AddInterId()
|
||||
{
|
||||
_emptyKwInterIdCount++;
|
||||
SDKConfig.KwaiInterUnitId.Add("");
|
||||
}
|
||||
|
||||
private void DelInterId(int index)
|
||||
{
|
||||
_emptyKwInterIdCount--;
|
||||
SDKConfig.KwaiInterUnitId.RemoveAt(index);
|
||||
}
|
||||
|
||||
private void AddRewardId()
|
||||
{
|
||||
_emptyKwVideoIdCount++;
|
||||
SDKConfig.KwaiVideoUnitId.Add("");
|
||||
}
|
||||
|
||||
private void DelRewardId(int index)
|
||||
{
|
||||
_emptyKwVideoIdCount--;
|
||||
SDKConfig.KwaiVideoUnitId.RemoveAt(index);
|
||||
}
|
||||
|
||||
private void AddBigoInterId()
|
||||
{
|
||||
_emptyBigoInterIdCount++;
|
||||
SDKConfig.BigoInterUnitId.Add("");
|
||||
}
|
||||
|
||||
private void DelBigoInterId(int index)
|
||||
{
|
||||
_emptyBigoInterIdCount--;
|
||||
SDKConfig.BigoInterUnitId.RemoveAt(index);
|
||||
}
|
||||
|
||||
private void AddBigoRewardId()
|
||||
{
|
||||
_emptyBigoVideoIdCount++;
|
||||
SDKConfig.BigoVideoUnitId.Add("");
|
||||
}
|
||||
|
||||
private void DelBigoRewardId(int index)
|
||||
{
|
||||
_emptyBigoVideoIdCount--;
|
||||
SDKConfig.BigoVideoUnitId.RemoveAt(index);
|
||||
}
|
||||
|
||||
static void RemoveExtraEmptyStrings(List<string> list, int count)
|
||||
{
|
||||
int emptyCount = count;
|
||||
if (list == null) return;
|
||||
// 先统计空字符串的数量
|
||||
for (int i = list.Count - 1; i >= 0; i--)
|
||||
{
|
||||
if (string.IsNullOrEmpty(list[i]))
|
||||
{
|
||||
emptyCount++;
|
||||
if (emptyCount > 1)
|
||||
{
|
||||
// 若空字符串数量超过 1,移除该元素
|
||||
list.RemoveAt(i);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// ---------------------------- 参数解析 ------------------------------
|
||||
private string clipboardText = "";
|
||||
private Dictionary<string, string> parsedParameters = new Dictionary<string, string>();
|
||||
private readonly string _tooltipText = "需提前在参数列表界面 Ctrl + A 全选,然后再 Ctrl + C 复制";
|
||||
|
||||
|
||||
// 正则表达式模式字典,用于匹配不同类型的广告参数
|
||||
private static readonly Dictionary<string, string> parameterPatterns = new Dictionary<string, string>
|
||||
{
|
||||
// App基本信息
|
||||
{ "App名称", @"App name\s*([^\n]+)" },
|
||||
{ "AF Dev key", @"AF Dev key(?:[\s-]*iOS)?\s*([^\n]+)"},
|
||||
{ "APP KEY", @"a\s*p\s*p\s*k\s*e\s*y\s*([^\n]+)"},
|
||||
{ "APP Secret", @"a\s*p\s*p\s*s\s*e\s*c\s*r\s*e\s*t\s*([^\n]+)" },
|
||||
{ "包名", @"(?:正式包名|测试包名|包名)\*?\s+([^\n]+)"},
|
||||
{ "广告源", @"广告源\s*([^\n]+)" },
|
||||
{ "开发者邮箱", @"开发者邮箱\s*([^\n]+)" },
|
||||
{ "谷歌商店链接", @"谷歌商店链接\s*([^\n]+)" },
|
||||
{ "官网链接", @"官网链接\s*([^\n]+)" },
|
||||
{ "隐私协议", @"隐私协议\s*([^\n]+)" },
|
||||
{ "业务上报域名", @"(?:业务上报域名|业务域名)\s*([^\n]+)" },
|
||||
{ "appkey", @"appkey\s*([^\n]+)" },
|
||||
{ "appsecret", @"appsecret\s*([^\n]+)" },
|
||||
{"AF Apple Appid", @"(?i)app\s*id(?:\s+id)*\s*[=:]*\s*([^\n]*)"},
|
||||
|
||||
// MAX (兼容多种格式)
|
||||
{ "MAX 激励视频", @"MAX参数[\s\S]*?激励视频\*?\s*([^\n]+)" },
|
||||
{ "MAX 插屏", @"MAX参数[\s\S]*?插屏\*?\s*([^\n]+)" },
|
||||
{ "MAX SDK Key", @"MAX参数[\s\S]*?SDK key\*?\s*([^\n]+)" },
|
||||
{ "MAX ad review key", @"MAX参数[\s\S]*?ad review key\*?\s*([^\n]+)" },
|
||||
|
||||
// BIGO (兼容多种格式)
|
||||
{ "BIGO 应用ID", @"BIGO参数[\s\S]*?(?:应用ID|appid)\s*([^\n]+)" },
|
||||
{ "BIGO 激励", @"BIGO参数[\s\S]*?(?:激励|客户端激励|bidding激励广告位ID)\s*([^\n]+)" },
|
||||
{ "BIGO 插屏", @"BIGO参数[\s\S]*?(?:插屏|客户端插屏|bidding插屏广告位ID)\s*([^\n]+)" },
|
||||
|
||||
// Kwai (兼容多种格式)
|
||||
{ "Kwai 应用ID", @"kwai参数[\s\S]*?(?:应用ID|appid)\s*([^\n]+)" },
|
||||
{ "Kwai 激励", @"kwai参数[\s\S]*?(?:激励1|激励2|客户端激励|bidding激励广告位ID)\s*([^\n]+)" },
|
||||
{ "Kwai 插屏", @"kwai参数[\s\S]*?(?:插屏1|插屏2|客户端插屏|bidding插屏广告位ID)\s*([^\n]+)" },
|
||||
|
||||
// Admob (兼容多种格式)
|
||||
{ "Admob 应用ID", @"admob参数[\s\S]*?(?:应用ID|App ID)\s*([^\n]+)" },
|
||||
{ "Admob 激励", @"admob参数[\s\S]*?(?:激励1|激励)\s*([^\n]+)" },
|
||||
{ "Admob 插屏", @"admob参数[\s\S]*?(?:插屏1|插屏)\s*([^\n]+)" },
|
||||
{ "Admob txt", @"admob参数[\s\S]*?txt\s*([^\n]+)" },
|
||||
|
||||
// Facebook (兼容多种格式)
|
||||
{ "FB appid", @"fb参数[\s\S]*?appid\s*([^\n]+)" },
|
||||
{ "FB property_id", @"fb参数[\s\S]*?property_id\s*([^\n]+)" },
|
||||
{ "FB 激励", @"fb参数[\s\S]*?激励\s*([^\n]+)" },
|
||||
{ "FB 插屏", @"fb参数[\s\S]*?插屏\s*([^\n]+)" },
|
||||
{ "FB txt", @"fb参数[\s\S]*?txt\s*([^\n]+)" },
|
||||
|
||||
// Topon (兼容多种格式)
|
||||
{ "Topon ID", @"Topon[\s\S]*?ID\s*([^\n]+)" },
|
||||
{ "Topon KEY", @"Topon[\s\S]*?KEY\s*([^\n]+)" },
|
||||
{ "Topon 激励", @"Topon[\s\S]*?激励\s*([^\n]+)" },
|
||||
{ "Topon 插屏", @"Topon[\s\S]*?插屏\s*([^\n]+)" }
|
||||
};
|
||||
|
||||
private void ParseClipboard()
|
||||
{
|
||||
if (string.IsNullOrEmpty(clipboardText.Trim()))
|
||||
{
|
||||
clipboardText = EditorGUIUtility.systemCopyBuffer;
|
||||
}
|
||||
|
||||
parsedParameters.Clear();
|
||||
|
||||
foreach (var pattern in parameterPatterns)
|
||||
{
|
||||
Match match = Regex.Match(clipboardText, pattern.Value, RegexOptions.IgnoreCase);
|
||||
if (match.Success)
|
||||
{
|
||||
// 处理可能有多个捕获组的情况(如BIGO和Kwai的两种格式)
|
||||
for (int i = 1; i < match.Groups.Count; i++)
|
||||
{
|
||||
if (!string.IsNullOrEmpty(match.Groups[i].Value))
|
||||
{
|
||||
parsedParameters[pattern.Key] = match.Groups[i].Value.Trim();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
UpdateConfig();
|
||||
EditorUtility.DisplayDialog("解析完成",
|
||||
$"成功解析 {parsedParameters.Count} 个参数", "确定");
|
||||
}
|
||||
|
||||
private void UpdateConfig()
|
||||
{
|
||||
SDKConfig.Instance.bigoVideoUnitId ??= new List<string>();
|
||||
SDKConfig.Instance.bigoVideoUnitId.Clear();
|
||||
SDKConfig.Instance.bigoInterUnitId ??= new List<string>();
|
||||
SDKConfig.Instance.bigoInterUnitId.Clear();
|
||||
|
||||
SDKConfig.Instance.kwaiVideoUnitId ??= new List<string>();
|
||||
SDKConfig.Instance.kwaiVideoUnitId.Clear();
|
||||
SDKConfig.Instance.kwaiInterUnitId ??= new List<string>();
|
||||
SDKConfig.Instance.kwaiInterUnitId.Clear();
|
||||
|
||||
foreach (KeyValuePair<string, string> pair in parsedParameters)
|
||||
{
|
||||
//Debug.Log($"KEY : {pair.Key}, VALUE : {pair.Value}");
|
||||
if (pair.Key.Contains("包名"))
|
||||
{
|
||||
#if UNITY_IOS
|
||||
PlayerSettings.SetApplicationIdentifier(BuildTargetGroup.iOS, pair.Value);
|
||||
#elif UNITY_ANDROID
|
||||
PlayerSettings.SetApplicationIdentifier(BuildTargetGroup.Android, pair.Value);
|
||||
#endif
|
||||
|
||||
Debug.Log($"包名设置 : {pair.Value}");
|
||||
}
|
||||
|
||||
if (pair.Key.Contains("AF Dev key"))
|
||||
{
|
||||
Debug.Log($"AF Dev key: {pair.Value}");
|
||||
SDKConfig.Instance.appsFlyerDevKey = pair.Value;
|
||||
}
|
||||
|
||||
#if UNITY_IOS
|
||||
|
||||
if (pair.Key.Contains("AF Apple Appid"))
|
||||
{
|
||||
Debug.Log($"AF Apple Appid: {pair.Value}");
|
||||
SDKConfig.Instance.appsFlyerIosAppleAppId = pair.Value;
|
||||
}
|
||||
#endif
|
||||
|
||||
if (pair.Key.Contains("APP KEY"))
|
||||
{
|
||||
Debug.Log($"BI APP KEY: {pair.Value}");
|
||||
SDKConfig.Instance.appKey = pair.Value;
|
||||
}
|
||||
|
||||
if (pair.Key.Contains("APP Secret"))
|
||||
{
|
||||
Debug.Log($"BI APP Secret: {pair.Value}");
|
||||
SDKConfig.Instance.appSecret = pair.Value;
|
||||
}
|
||||
|
||||
if (pair.Key.Contains("域名"))
|
||||
{
|
||||
Debug.Log($"业务域名: {pair.Value}");
|
||||
SDKConfig.Instance.logReportUrl = pair.Value;
|
||||
}
|
||||
|
||||
if (pair.Key.Contains("Topon ID"))
|
||||
{
|
||||
Debug.Log($"Topon APP ID: {pair.Value}");
|
||||
SDKConfig.Instance.toponAppId = pair.Value;
|
||||
}
|
||||
|
||||
if (pair.Key.Contains("Topon KEY"))
|
||||
{
|
||||
Debug.Log($"Topon APP KEY: {pair.Value}");
|
||||
SDKConfig.Instance.toponAppkey = pair.Value;
|
||||
}
|
||||
|
||||
if (pair.Key.Contains("Topon 激励"))
|
||||
{
|
||||
Debug.Log($"Topon 激励: {pair.Value}");
|
||||
SDKConfig.Instance.toponVideoUnitId = pair.Value;
|
||||
}
|
||||
|
||||
if (pair.Key.Contains("Topon 插屏"))
|
||||
{
|
||||
Debug.Log($"Topon 插屏: {pair.Value}");
|
||||
SDKConfig.Instance.toponInterUnitId = pair.Value;
|
||||
}
|
||||
|
||||
if (pair.Key.Contains("MAX SDK Key"))
|
||||
{
|
||||
Debug.Log($"MAX SDK Key: {pair.Value}");
|
||||
SDKConfig.Instance.maxAppKey = pair.Value;
|
||||
}
|
||||
|
||||
if (pair.Key.Contains("MAX 激励视频"))
|
||||
{
|
||||
Debug.Log($"MAX 激励视频: {pair.Value}");
|
||||
SDKConfig.Instance.videoUnitId = pair.Value;
|
||||
}
|
||||
|
||||
if (pair.Key.Contains("MAX 插屏"))
|
||||
{
|
||||
Debug.Log($"MAX 插屏: {pair.Value}");
|
||||
SDKConfig.Instance.interUnitId = pair.Value;
|
||||
}
|
||||
|
||||
if (pair.Key.Contains("BIGO 应用ID"))
|
||||
{
|
||||
Debug.Log($"BIGO 应用ID: {pair.Value}");
|
||||
SDKConfig.Instance.bigoAppId = pair.Value;
|
||||
}
|
||||
|
||||
if (pair.Key.Contains("BIGO 激励"))
|
||||
{
|
||||
Debug.Log($"BIGO 激励: {pair.Value}");
|
||||
//SDKConfig.Instance.bigoVideoUnitId = pair.Value;
|
||||
SDKConfig.Instance.bigoVideoUnitId ??= new List<string>();
|
||||
SDKConfig.Instance.bigoVideoUnitId.Add(pair.Value);
|
||||
}
|
||||
|
||||
if (pair.Key.Contains("BIGO 插屏"))
|
||||
{
|
||||
Debug.Log($"BIGO 插屏: {pair.Value}");
|
||||
//SDKConfig.Instance.bigoInterUnitId = pair.Value;
|
||||
SDKConfig.Instance.bigoInterUnitId ??= new List<string>();
|
||||
SDKConfig.Instance.bigoInterUnitId.Add(pair.Value);
|
||||
}
|
||||
|
||||
if (pair.Key.Contains("Admob 应用ID"))
|
||||
{
|
||||
Debug.Log($"Admob 应用ID: {pair.Value}");
|
||||
//SDKConfig.Instance.admobAppId = pair.Value;
|
||||
}
|
||||
|
||||
if (pair.Key.Contains("Admob 激励"))
|
||||
{
|
||||
Debug.Log($"Admob 激励: {pair.Value}");
|
||||
}
|
||||
|
||||
if (pair.Key.Contains("Admob 插屏"))
|
||||
{
|
||||
Debug.Log($"Admob 插屏: {pair.Value}");
|
||||
}
|
||||
|
||||
if (pair.Key.Contains("Kwai 应用ID"))
|
||||
{
|
||||
Debug.Log($"Kwai 应用ID: {pair.Value}");
|
||||
SDKConfig.Instance.kwaiAppId = pair.Value;
|
||||
}
|
||||
|
||||
if (pair.Key.Contains("Kwai 激励"))
|
||||
{
|
||||
Debug.Log($"Kwai 激励: {pair.Value}");
|
||||
SDKConfig.Instance.kwaiVideoUnitId ??= new List<string>();
|
||||
SDKConfig.Instance.kwaiVideoUnitId.Add(pair.Value);
|
||||
}
|
||||
|
||||
if (pair.Key.Contains("Kwai 插屏"))
|
||||
{
|
||||
Debug.Log($"Kwai 插屏: {pair.Value}");
|
||||
SDKConfig.Instance.kwaiInterUnitId ??= new List<string>();
|
||||
SDKConfig.Instance.kwaiInterUnitId.Add(pair.Value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5aacf47d81d343d4e9189ee6cf23e696
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4df08fba7905adf48876bcfff4f5704f
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,17 @@
|
||||
package com.tool.countrycode;
|
||||
import android.app.Activity;
|
||||
import java.util.Locale;
|
||||
public class AcquireCountryCode {
|
||||
// 获取国家码
|
||||
public static String getCountryCode()
|
||||
{
|
||||
Locale locale = Locale.getDefault();
|
||||
return locale.getCountry();
|
||||
}
|
||||
|
||||
public static String getCountryCode3() {
|
||||
Locale currentLocale = Locale.getDefault();
|
||||
return currentLocale.getISO3Country();
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 439c7d376883ccb4da22414c75510b24
|
||||
PluginImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
defineConstraints: []
|
||||
isPreloaded: 0
|
||||
isOverridable: 0
|
||||
isExplicitlyReferenced: 0
|
||||
validateReferences: 1
|
||||
platformData:
|
||||
- first:
|
||||
Android: Android
|
||||
second:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
- first:
|
||||
Any:
|
||||
second:
|
||||
enabled: 0
|
||||
settings: {}
|
||||
- first:
|
||||
Editor: Editor
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
DefaultValueInitialized: true
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,33 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6e3da5c7fe21c1347a563e64e8f305d4
|
||||
PluginImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
defineConstraints: []
|
||||
isPreloaded: 0
|
||||
isOverridable: 0
|
||||
isExplicitlyReferenced: 0
|
||||
validateReferences: 1
|
||||
platformData:
|
||||
- first:
|
||||
Any:
|
||||
second:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
- first:
|
||||
Editor: Editor
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
DefaultValueInitialized: true
|
||||
- first:
|
||||
Windows Store Apps: WindowsStoreApps
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d95a0f1f59b85b14d95ac7fa16356627
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,33 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7bc122d7ecc60a94581cd8d1fa8a00d1
|
||||
PluginImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
defineConstraints: []
|
||||
isPreloaded: 0
|
||||
isOverridable: 0
|
||||
isExplicitlyReferenced: 0
|
||||
validateReferences: 1
|
||||
platformData:
|
||||
- first:
|
||||
Any:
|
||||
second:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
- first:
|
||||
Editor: Editor
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
DefaultValueInitialized: true
|
||||
- first:
|
||||
Windows Store Apps: WindowsStoreApps
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,33 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c832b172e79957744ab4c7e68c763c6e
|
||||
PluginImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
defineConstraints: []
|
||||
isPreloaded: 0
|
||||
isOverridable: 0
|
||||
isExplicitlyReferenced: 0
|
||||
validateReferences: 1
|
||||
platformData:
|
||||
- first:
|
||||
Any:
|
||||
second:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
- first:
|
||||
Editor: Editor
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
DefaultValueInitialized: true
|
||||
- first:
|
||||
Windows Store Apps: WindowsStoreApps
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
@@ -0,0 +1,33 @@
|
||||
fileFormatVersion: 2
|
||||
guid: edc716f284f0b4d4dac0cbc9880634dd
|
||||
PluginImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
defineConstraints: []
|
||||
isPreloaded: 0
|
||||
isOverridable: 0
|
||||
isExplicitlyReferenced: 0
|
||||
validateReferences: 1
|
||||
platformData:
|
||||
- first:
|
||||
Any:
|
||||
second:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
- first:
|
||||
Editor: Editor
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
DefaultValueInitialized: true
|
||||
- first:
|
||||
Windows Store Apps: WindowsStoreApps
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
CPU: AnyCPU
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 62cd95d3cdb46984ab747afbce81d5a0
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,12 @@
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
extern "C" {
|
||||
__attribute__((visibility("default")))
|
||||
const char* _GetDeviceCountryCode() {
|
||||
@autoreleasepool {
|
||||
NSLocale *currentLocale = [NSLocale currentLocale];
|
||||
NSString *countryCode = [currentLocale objectForKey:NSLocaleCountryCode];
|
||||
return strdup([countryCode UTF8String]); // 使用strdup确保内存安全
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 63f1a672ae2b65f478662e01b0b67d7b
|
||||
PluginImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
defineConstraints: []
|
||||
isPreloaded: 0
|
||||
isOverridable: 0
|
||||
isExplicitlyReferenced: 0
|
||||
validateReferences: 1
|
||||
platformData:
|
||||
- first:
|
||||
Any:
|
||||
second:
|
||||
enabled: 0
|
||||
settings: {}
|
||||
- first:
|
||||
Editor: Editor
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
DefaultValueInitialized: true
|
||||
- first:
|
||||
iPhone: iOS
|
||||
second:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
- first:
|
||||
tvOS: tvOS
|
||||
second:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 96d3bb1be45827f47a83034c9908c005
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8ea7ef46cf2ade545b68fd32b9c4b8b6
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "SDKConfig",
|
||||
"rootNamespace": "",
|
||||
"references": [],
|
||||
"includePlatforms": [],
|
||||
"excludePlatforms": [],
|
||||
"allowUnsafeCode": false,
|
||||
"overrideReferences": false,
|
||||
"precompiledReferences": [],
|
||||
"autoReferenced": true,
|
||||
"defineConstraints": [],
|
||||
"versionDefines": [],
|
||||
"noEngineReferences": false
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8b6da46957b38914aa097a61bd86a16d
|
||||
AssemblyDefinitionImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,234 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace RGKT2NIYSDK
|
||||
{
|
||||
[System.Serializable]
|
||||
public class SDKConfig : ScriptableObject
|
||||
{
|
||||
|
||||
public string appsFlyerDevKey;
|
||||
|
||||
public string appsFlyerIosAppleAppId;
|
||||
|
||||
public string appKey;
|
||||
|
||||
public string appSecret;
|
||||
|
||||
public string logReportUrl;
|
||||
|
||||
public string maxAppKey;
|
||||
|
||||
public string splashUnitId;
|
||||
|
||||
public string bannerUnitId;
|
||||
|
||||
public string interUnitId;
|
||||
|
||||
public string videoUnitId;
|
||||
|
||||
public string kwaiAppId;
|
||||
|
||||
public List<string> kwaiVideoUnitId = new();
|
||||
|
||||
public List<string> kwaiInterUnitId = new();
|
||||
|
||||
public string bigoAppId;
|
||||
|
||||
public List<string> bigoVideoUnitId = new();
|
||||
|
||||
public List<string> bigoInterUnitId = new();
|
||||
|
||||
public string bigoSplashUnitId;
|
||||
|
||||
public string toponAppId;
|
||||
|
||||
public string toponAppkey;
|
||||
|
||||
public string toponVideoUnitId;
|
||||
|
||||
public string toponInterUnitId;
|
||||
|
||||
public string admobAppId;
|
||||
|
||||
public string admobVideoUnitId;
|
||||
|
||||
public string admobInterUnitId;
|
||||
|
||||
public string admobSplashUnitId;
|
||||
|
||||
public bool isDebug = false;
|
||||
|
||||
public bool isPrintLog = false;
|
||||
|
||||
public bool isUseAdmobSplash = false;
|
||||
|
||||
private static SDKConfig _instance;
|
||||
|
||||
public static SDKConfig Instance
|
||||
{
|
||||
get
|
||||
{
|
||||
if (_instance != null) return _instance;
|
||||
_instance = AssetUtils.GetScriptableObject<SDKConfig>(typeof(SDKConfig).Name, "Assets/Resources", false, false);
|
||||
return _instance;
|
||||
}
|
||||
set
|
||||
{
|
||||
_instance = value;
|
||||
}
|
||||
}
|
||||
|
||||
public static string AppsFlyerDevKey
|
||||
{
|
||||
get { return Instance.appsFlyerDevKey; }
|
||||
}
|
||||
|
||||
public static string AppsFlyerIosAppleAppId
|
||||
{
|
||||
get { return Instance.appsFlyerIosAppleAppId; }
|
||||
}
|
||||
|
||||
public static string AppKey
|
||||
{
|
||||
get { return Instance.appKey; }
|
||||
}
|
||||
|
||||
public static string AppSecret
|
||||
{
|
||||
get { return Instance.appSecret; }
|
||||
}
|
||||
|
||||
public static string LogReportUrl
|
||||
{
|
||||
get
|
||||
{
|
||||
if (!Instance.logReportUrl.StartsWith("http"))
|
||||
{
|
||||
return "https://" + Instance.logReportUrl.Replace(" ", ""); ;
|
||||
}
|
||||
return Instance.logReportUrl.Replace(" ", ""); ;
|
||||
}
|
||||
}
|
||||
|
||||
public static string MaxAppKey
|
||||
{
|
||||
get { return Instance.maxAppKey; }
|
||||
}
|
||||
|
||||
public static string SplashUnitID
|
||||
{
|
||||
get { return Instance.splashUnitId; }
|
||||
}
|
||||
|
||||
public static string BannerUnitId
|
||||
{
|
||||
get { return Instance.bannerUnitId; }
|
||||
}
|
||||
|
||||
public static string InterUnitId
|
||||
{
|
||||
get { return Instance.interUnitId; }
|
||||
}
|
||||
|
||||
public static string VideoUnitId
|
||||
{
|
||||
get { return Instance.videoUnitId; }
|
||||
}
|
||||
|
||||
public static string KwaiAppId
|
||||
{
|
||||
get => Instance.kwaiAppId;
|
||||
set => Instance.kwaiAppId = value;
|
||||
}
|
||||
|
||||
public static List<string> KwaiVideoUnitId
|
||||
{
|
||||
get => Instance.kwaiVideoUnitId;
|
||||
set => Instance.kwaiVideoUnitId = value;
|
||||
}
|
||||
|
||||
public static List<string> KwaiInterUnitId
|
||||
{
|
||||
get => Instance.kwaiInterUnitId;
|
||||
set => Instance.kwaiInterUnitId = value;
|
||||
}
|
||||
|
||||
public static string BigoAppId
|
||||
{
|
||||
get => Instance.bigoAppId;
|
||||
set => Instance.bigoAppId = value;
|
||||
}
|
||||
|
||||
public static List<string> BigoVideoUnitId
|
||||
{
|
||||
get => Instance.bigoVideoUnitId;
|
||||
set => Instance.bigoVideoUnitId = value;
|
||||
}
|
||||
|
||||
public static List<string> BigoInterUnitId
|
||||
{
|
||||
get => Instance.bigoInterUnitId;
|
||||
set => Instance.bigoInterUnitId = value;
|
||||
}
|
||||
|
||||
public static string BigoSplashUnitId
|
||||
{
|
||||
get => Instance.bigoSplashUnitId;
|
||||
set => Instance.bigoSplashUnitId = value;
|
||||
}
|
||||
|
||||
public static string ToponAppId
|
||||
{
|
||||
get { return Instance.toponAppId; }
|
||||
}
|
||||
|
||||
public static string ToponAppkey
|
||||
{
|
||||
get { return Instance.toponAppkey; }
|
||||
}
|
||||
|
||||
public static string ToponVideoUnitId
|
||||
{
|
||||
get { return Instance.toponVideoUnitId; }
|
||||
}
|
||||
|
||||
public static string ToponInterUnitId
|
||||
{
|
||||
get { return Instance.toponInterUnitId; }
|
||||
}
|
||||
|
||||
public static string AdmobAppId
|
||||
{
|
||||
get => Instance.admobAppId;
|
||||
set => Instance.admobAppId = value;
|
||||
}
|
||||
|
||||
public static string AdmobVideoUnitId
|
||||
{
|
||||
get => Instance.admobVideoUnitId;
|
||||
set => Instance.admobVideoUnitId = value;
|
||||
}
|
||||
|
||||
public static string AdmobSplashUnitId
|
||||
{
|
||||
get => Instance.admobSplashUnitId;
|
||||
set => Instance.admobSplashUnitId = value;
|
||||
}
|
||||
|
||||
public static string AdmobInterUnitId
|
||||
{
|
||||
get => Instance.admobInterUnitId;
|
||||
set => Instance.admobInterUnitId = value;
|
||||
}
|
||||
|
||||
public static bool IsDebug => Instance.isDebug;
|
||||
|
||||
public static bool IsPrintLog => Instance.isPrintLog;
|
||||
|
||||
public static bool IsUseAdmobSplash => Instance.isUseAdmobSplash;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6e4857e9d117e764490d38ceb6820095
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d0d9293c0ca40cd41ba02042aeb78b89
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,152 @@
|
||||
|
||||
using System;
|
||||
using System.IO;
|
||||
using UnityEngine;
|
||||
|
||||
#if UNITY_EDITOR
|
||||
using System.Collections.Generic;
|
||||
using UnityEditor;
|
||||
#endif
|
||||
|
||||
namespace RGKT2NIYSDK
|
||||
{
|
||||
public static class AssetUtils
|
||||
{
|
||||
/// <summary>
|
||||
/// Returns a reference to a scriptable object of type T with the given fileName at the relative resourcesPath.
|
||||
/// <para/> If the asset is not found, one will get created automatically (in the Editor only)
|
||||
/// </summary>
|
||||
/// <param name="fileName"></param>
|
||||
/// <param name="resourcesPath"></param>
|
||||
/// <param name="saveAssetDatabase"></param>
|
||||
/// <param name="refreshAssetDatabase"></param>
|
||||
/// <typeparam name="T"></typeparam>
|
||||
/// <returns></returns>
|
||||
public static T GetScriptableObject<T>(string fileName,
|
||||
string resourcesPath,
|
||||
bool saveAssetDatabase,
|
||||
bool refreshAssetDatabase)
|
||||
where T : ScriptableObject
|
||||
{
|
||||
if (string.IsNullOrEmpty(resourcesPath)) return null;
|
||||
if (string.IsNullOrEmpty(fileName)) return null;
|
||||
// ReSharper disable once SuspiciousTypeConversion.Global
|
||||
// if (!resourcesPath[resourcesPath.Length - 1].Equals(@"\")) resourcesPath += @"\";
|
||||
// resourcesPath = resourcesPath.Replace(@"\", "/");
|
||||
resourcesPath = CleanPath(resourcesPath);
|
||||
|
||||
var obj = (T)Resources.Load(fileName, typeof(T));
|
||||
|
||||
if (obj == null)
|
||||
{
|
||||
string simpleResourcesPath = resourcesPath.Replace(resourcesPath.Substring(0, resourcesPath.LastIndexOf("Resources", StringComparison.Ordinal)), "");
|
||||
simpleResourcesPath = simpleResourcesPath.Replace("Resources", "").Remove(0, 1);
|
||||
obj = (T)Resources.Load(Path.Combine(simpleResourcesPath, fileName), typeof(T));
|
||||
}
|
||||
|
||||
#if UNITY_EDITOR
|
||||
if (obj != null) return obj;
|
||||
if (!Directory.Exists("Assets/Resources"))
|
||||
{
|
||||
Directory.CreateDirectory("Assets/Resources");
|
||||
}
|
||||
obj = CreateAsset<T>(resourcesPath, fileName, ".asset", saveAssetDatabase, refreshAssetDatabase);
|
||||
#endif
|
||||
return obj;
|
||||
}
|
||||
|
||||
public static T GetResource<T>(string resourcesPath, string fileName) where T : ScriptableObject
|
||||
{
|
||||
if (string.IsNullOrEmpty(resourcesPath)) return null;
|
||||
if (string.IsNullOrEmpty(fileName)) return null;
|
||||
resourcesPath = CleanPath(resourcesPath);
|
||||
// ReSharper disable once SuspiciousTypeConversion.Global
|
||||
// if (!resourcesPath[resourcesPath.Length - 1].Equals(@"\")) resourcesPath += @"\";
|
||||
// resourcesPath = resourcesPath.Replace(@"\", "/");
|
||||
|
||||
return (T)Resources.Load(resourcesPath + fileName, typeof(T));
|
||||
}
|
||||
|
||||
public static string CleanPath(string path)
|
||||
{
|
||||
// ReSharper disable once SuspiciousTypeConversion.Global
|
||||
if (!path[path.Length - 1].Equals(@"\")) path += @"\";
|
||||
path = path.Replace(@"\\", @"\");
|
||||
path = path.Replace(@"\", "/");
|
||||
return path;
|
||||
}
|
||||
|
||||
#if UNITY_EDITOR
|
||||
public static T CreateAsset<T>(string relativePath,
|
||||
string fileName,
|
||||
string extension = ".asset",
|
||||
bool saveAssetDatabase = true,
|
||||
bool refreshAssetDatabase = true)
|
||||
where T : ScriptableObject
|
||||
{
|
||||
if (string.IsNullOrEmpty(relativePath)) return null;
|
||||
if (string.IsNullOrEmpty(fileName)) return null;
|
||||
relativePath = CleanPath(relativePath);
|
||||
// ReSharper disable once SuspiciousTypeConversion.Global
|
||||
// if (!relativePath[relativePath.Length - 1].Equals(@"\")) relativePath += @"\";
|
||||
// relativePath = relativePath.Replace(@"\\", @"\");
|
||||
var asset = ScriptableObject.CreateInstance<T>();
|
||||
AssetDatabase.CreateAsset(asset, relativePath + fileName + extension);
|
||||
EditorUtility.SetDirty(asset);
|
||||
if (saveAssetDatabase) AssetDatabase.SaveAssets();
|
||||
if (refreshAssetDatabase) AssetDatabase.Refresh();
|
||||
return asset;
|
||||
}
|
||||
|
||||
public static List<T> GetAssets<T>() where T : ScriptableObject
|
||||
{
|
||||
var list = new List<T>();
|
||||
string[] guids = AssetDatabase.FindAssets("t:" + typeof(T).Name);
|
||||
foreach (string guid in guids)
|
||||
{
|
||||
var asset = AssetDatabase.LoadAssetAtPath<T>(AssetDatabase.GUIDToAssetPath(guid));
|
||||
if (asset == null) continue;
|
||||
list.Add(asset);
|
||||
}
|
||||
|
||||
return list;
|
||||
}
|
||||
|
||||
public static void MoveAssetToTrash(string relativePath, string fileName, bool saveAssetDatabase = true,
|
||||
bool refreshAssetDatabase = true, bool printDebugMessage = true)
|
||||
{
|
||||
if (string.IsNullOrEmpty(relativePath)) return;
|
||||
if (string.IsNullOrEmpty(fileName)) return;
|
||||
// ReSharper disable once SuspiciousTypeConversion.Global
|
||||
// if (!relativePath[relativePath.Length - 1].Equals(@"\")) relativePath += @"\";
|
||||
relativePath = CleanPath(relativePath);
|
||||
if (!AssetDatabase.MoveAssetToTrash(relativePath + fileName + ".asset")) return;
|
||||
if (printDebugMessage) Debug.Log("The " + fileName + ".asset file has been moved to trash.");
|
||||
if (saveAssetDatabase) AssetDatabase.SaveAssets();
|
||||
if (refreshAssetDatabase) AssetDatabase.Refresh();
|
||||
}
|
||||
|
||||
public static Texture GetTexture(string filePath, string fileName, string fileExtension = ".png")
|
||||
{
|
||||
if (string.IsNullOrEmpty(filePath)) return null;
|
||||
if (string.IsNullOrEmpty(fileName)) return null;
|
||||
// ReSharper disable once SuspiciousTypeConversion.Global
|
||||
// if (!filePath[filePath.Length - 1].Equals(@"\")) filePath += @"\";
|
||||
filePath = CleanPath(filePath);
|
||||
return AssetDatabase.LoadAssetAtPath<Texture>(filePath + fileName + fileExtension);
|
||||
}
|
||||
|
||||
public static Texture2D GetTexture2D(string filePath, string fileName, string fileExtension = ".png")
|
||||
{
|
||||
if (string.IsNullOrEmpty(filePath)) return null;
|
||||
if (string.IsNullOrEmpty(fileName)) return null;
|
||||
// ReSharper disable once SuspiciousTypeConversion.Global
|
||||
// if (!filePath[filePath.Length - 1].Equals(@"\")) filePath += @"\";
|
||||
filePath = CleanPath(filePath);
|
||||
return AssetDatabase.LoadAssetAtPath<Texture2D>(filePath + fileName + fileExtension);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a6cff4f16b2f10d499cfd019dc05cf9f
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d0a2dd547ed87a64a8c6e3d3a12a3d91
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7863556d88b814e09ba9cfc75a91d655
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,71 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace AppsFlyerSDK
|
||||
{
|
||||
public enum MediationNetwork : ulong
|
||||
{
|
||||
GoogleAdMob = 1,
|
||||
IronSource = 2,
|
||||
ApplovinMax = 3,
|
||||
Fyber = 4,
|
||||
Appodeal = 5,
|
||||
Admost = 6,
|
||||
Topon = 7,
|
||||
Tradplus = 8,
|
||||
Yandex = 9,
|
||||
ChartBoost = 10,
|
||||
Unity = 11,
|
||||
ToponPte = 12,
|
||||
Custom = 13,
|
||||
DirectMonetization = 14
|
||||
}
|
||||
|
||||
public static class AdRevenueScheme
|
||||
{
|
||||
/**
|
||||
* code ISO 3166-1 format
|
||||
*/
|
||||
public const string COUNTRY = "country";
|
||||
|
||||
/**
|
||||
* ID of the ad unit for the impression
|
||||
*/
|
||||
public const string AD_UNIT = "ad_unit";
|
||||
|
||||
/**
|
||||
* Format of the ad
|
||||
*/
|
||||
public const string AD_TYPE = "ad_type";
|
||||
|
||||
/**
|
||||
* ID of the ad placement for the impression
|
||||
*/
|
||||
public const string PLACEMENT = "placement";
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
// Data class representing ad revenue information.
|
||||
//
|
||||
// @property monetizationNetwork The name of the network that monetized the ad.
|
||||
// @property mediationNetwork An instance of MediationNetwork representing the mediation service used.
|
||||
// @property currencyIso4217Code The ISO 4217 currency code describing the currency of the revenue.
|
||||
// @property eventRevenue The amount of revenue generated by the ad.
|
||||
/// </summary>
|
||||
public class AFAdRevenueData
|
||||
{
|
||||
public string monetizationNetwork { get; private set; }
|
||||
public MediationNetwork mediationNetwork { get; private set; }
|
||||
public string currencyIso4217Code { get; private set; }
|
||||
public double eventRevenue { get; private set; }
|
||||
|
||||
public AFAdRevenueData(string monetization, MediationNetwork mediation, string currency, double revenue)
|
||||
{
|
||||
monetizationNetwork = monetization;
|
||||
mediationNetwork = mediation;
|
||||
currencyIso4217Code = currency;
|
||||
eventRevenue = revenue;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 49e1906ae949e4bfea400bd1da9f7e39
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,72 @@
|
||||
using UnityEngine;
|
||||
using System.Collections;
|
||||
|
||||
public class AFInAppEvents {
|
||||
/**
|
||||
* Event Type
|
||||
* */
|
||||
public const string LEVEL_ACHIEVED = "af_level_achieved";
|
||||
public const string ADD_PAYMENT_INFO = "af_add_payment_info";
|
||||
public const string ADD_TO_CART = "af_add_to_cart";
|
||||
public const string ADD_TO_WISH_LIST = "af_add_to_wishlist";
|
||||
public const string COMPLETE_REGISTRATION = "af_complete_registration";
|
||||
public const string TUTORIAL_COMPLETION = "af_tutorial_completion";
|
||||
public const string INITIATED_CHECKOUT = "af_initiated_checkout";
|
||||
public const string PURCHASE = "af_purchase";
|
||||
public const string RATE = "af_rate";
|
||||
public const string SEARCH = "af_search";
|
||||
public const string SPENT_CREDIT = "af_spent_credits";
|
||||
public const string ACHIEVEMENT_UNLOCKED = "af_achievement_unlocked";
|
||||
public const string CONTENT_VIEW = "af_content_view";
|
||||
public const string TRAVEL_BOOKING = "af_travel_booking";
|
||||
public const string SHARE = "af_share";
|
||||
public const string INVITE = "af_invite";
|
||||
public const string LOGIN = "af_login";
|
||||
public const string RE_ENGAGE = "af_re_engage";
|
||||
public const string UPDATE = "af_update";
|
||||
public const string OPENED_FROM_PUSH_NOTIFICATION = "af_opened_from_push_notification";
|
||||
public const string LOCATION_CHANGED = "af_location_changed";
|
||||
public const string LOCATION_COORDINATES = "af_location_coordinates";
|
||||
public const string ORDER_ID = "af_order_id";
|
||||
/**
|
||||
* Event Parameter Name
|
||||
* **/
|
||||
public const string LEVEL = "af_level";
|
||||
public const string SCORE = "af_score";
|
||||
public const string SUCCESS = "af_success";
|
||||
public const string PRICE = "af_price";
|
||||
public const string CONTENT_TYPE = "af_content_type";
|
||||
public const string CONTENT_ID = "af_content_id";
|
||||
public const string CONTENT_LIST = "af_content_list";
|
||||
public const string CURRENCY = "af_currency";
|
||||
public const string QUANTITY = "af_quantity";
|
||||
public const string REGSITRATION_METHOD = "af_registration_method";
|
||||
public const string PAYMENT_INFO_AVAILIBLE = "af_payment_info_available";
|
||||
public const string MAX_RATING_VALUE = "af_max_rating_value";
|
||||
public const string RATING_VALUE = "af_rating_value";
|
||||
public const string SEARCH_STRING = "af_search_string";
|
||||
public const string DATE_A = "af_date_a";
|
||||
public const string DATE_B = "af_date_b";
|
||||
public const string DESTINATION_A = "af_destination_a";
|
||||
public const string DESTINATION_B = "af_destination_b";
|
||||
public const string DESCRIPTION = "af_description";
|
||||
public const string CLASS = "af_class";
|
||||
public const string EVENT_START = "af_event_start";
|
||||
public const string EVENT_END = "af_event_end";
|
||||
public const string LATITUDE = "af_lat";
|
||||
public const string LONGTITUDE = "af_long";
|
||||
public const string CUSTOMER_USER_ID = "af_customer_user_id";
|
||||
public const string VALIDATED = "af_validated";
|
||||
public const string REVENUE = "af_revenue";
|
||||
public const string RECEIPT_ID = "af_receipt_id";
|
||||
public const string PARAM_1 = "af_param_1";
|
||||
public const string PARAM_2 = "af_param_2";
|
||||
public const string PARAM_3 = "af_param_3";
|
||||
public const string PARAM_4 = "af_param_4";
|
||||
public const string PARAM_5 = "af_param_5";
|
||||
public const string PARAM_6 = "af_param_6";
|
||||
public const string PARAM_7 = "af_param_7";
|
||||
public const string PARAM_8 = "af_param_8";
|
||||
public const string PARAM_9 = "af_param_9";
|
||||
public const string PARAM_10 = "af_param_10";
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4075c6cf6f3d94b9a9f37f826e6a0e6f
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,547 @@
|
||||
/*
|
||||
* Copyright (c) 2013 Calvin Rien
|
||||
*
|
||||
* Based on the JSON parser by Patrick van Bergen
|
||||
* http://techblog.procurios.nl/k/618/news/view/14605/14863/How-do-I-write-my-own-parser-for-JSON.html
|
||||
*
|
||||
* Simplified it so that it doesn't throw exceptions
|
||||
* and can be used in Unity iPhone with maximum code stripping.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining
|
||||
* a copy of this software and associated documentation files (the
|
||||
* "Software"), to deal in the Software without restriction, including
|
||||
* without limitation the rights to use, copy, modify, merge, publish,
|
||||
* distribute, sublicense, and/or sell copies of the Software, and to
|
||||
* permit persons to whom the Software is furnished to do so, subject to
|
||||
* the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be
|
||||
* included in all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
|
||||
namespace AFMiniJSON {
|
||||
// Example usage:
|
||||
//
|
||||
// using UnityEngine;
|
||||
// using System.Collections;
|
||||
// using System.Collections.Generic;
|
||||
// using MiniJSON;
|
||||
//
|
||||
// public class MiniJSONTest : MonoBehaviour {
|
||||
// void Start () {
|
||||
// var jsonString = "{ \"array\": [1.44,2,3], " +
|
||||
// "\"object\": {\"key1\":\"value1\", \"key2\":256}, " +
|
||||
// "\"string\": \"The quick brown fox \\\"jumps\\\" over the lazy dog \", " +
|
||||
// "\"unicode\": \"\\u3041 Men\u00fa sesi\u00f3n\", " +
|
||||
// "\"int\": 65536, " +
|
||||
// "\"float\": 3.1415926, " +
|
||||
// "\"bool\": true, " +
|
||||
// "\"null\": null }";
|
||||
//
|
||||
// var dict = Json.Deserialize(jsonString) as Dictionary<string,object>;
|
||||
//
|
||||
// Debug.Log("deserialized: " + dict.GetType());
|
||||
// Debug.Log("dict['array'][0]: " + ((List<object>) dict["array"])[0]);
|
||||
// Debug.Log("dict['string']: " + (string) dict["string"]);
|
||||
// Debug.Log("dict['float']: " + (double) dict["float"]); // floats come out as doubles
|
||||
// Debug.Log("dict['int']: " + (long) dict["int"]); // ints come out as longs
|
||||
// Debug.Log("dict['unicode']: " + (string) dict["unicode"]);
|
||||
//
|
||||
// var str = Json.Serialize(dict);
|
||||
//
|
||||
// Debug.Log("serialized: " + str);
|
||||
// }
|
||||
// }
|
||||
|
||||
/// <summary>
|
||||
/// This class encodes and decodes JSON strings.
|
||||
/// Spec. details, see http://www.json.org/
|
||||
///
|
||||
/// JSON uses Arrays and Objects. These correspond here to the datatypes IList and IDictionary.
|
||||
/// All numbers are parsed to doubles.
|
||||
/// </summary>
|
||||
public static class Json {
|
||||
/// <summary>
|
||||
/// Parses the string json into a value
|
||||
/// </summary>
|
||||
/// <param name="json">A JSON string.</param>
|
||||
/// <returns>An List<object>, a Dictionary<string, object>, a double, an integer,a string, null, true, or false</returns>
|
||||
public static object Deserialize(string json) {
|
||||
// save the string for debug information
|
||||
if (json == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return Parser.Parse(json);
|
||||
}
|
||||
|
||||
sealed class Parser : IDisposable {
|
||||
const string WORD_BREAK = "{}[],:\"";
|
||||
|
||||
public static bool IsWordBreak(char c) {
|
||||
return Char.IsWhiteSpace(c) || WORD_BREAK.IndexOf(c) != -1;
|
||||
}
|
||||
|
||||
enum TOKEN {
|
||||
NONE,
|
||||
CURLY_OPEN,
|
||||
CURLY_CLOSE,
|
||||
SQUARED_OPEN,
|
||||
SQUARED_CLOSE,
|
||||
COLON,
|
||||
COMMA,
|
||||
STRING,
|
||||
NUMBER,
|
||||
TRUE,
|
||||
FALSE,
|
||||
NULL
|
||||
};
|
||||
|
||||
StringReader json;
|
||||
|
||||
Parser(string jsonString) {
|
||||
json = new StringReader(jsonString);
|
||||
}
|
||||
|
||||
public static object Parse(string jsonString) {
|
||||
using (var instance = new Parser(jsonString)) {
|
||||
return instance.ParseValue();
|
||||
}
|
||||
}
|
||||
|
||||
public void Dispose() {
|
||||
json.Dispose();
|
||||
json = null;
|
||||
}
|
||||
|
||||
Dictionary<string, object> ParseObject() {
|
||||
Dictionary<string, object> table = new Dictionary<string, object>();
|
||||
|
||||
// ditch opening brace
|
||||
json.Read();
|
||||
|
||||
// {
|
||||
while (true) {
|
||||
switch (NextToken) {
|
||||
case TOKEN.NONE:
|
||||
return null;
|
||||
case TOKEN.COMMA:
|
||||
continue;
|
||||
case TOKEN.CURLY_CLOSE:
|
||||
return table;
|
||||
default:
|
||||
// name
|
||||
string name = ParseString();
|
||||
if (name == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
// :
|
||||
if (NextToken != TOKEN.COLON) {
|
||||
return null;
|
||||
}
|
||||
// ditch the colon
|
||||
json.Read();
|
||||
|
||||
// value
|
||||
table[name] = ParseValue();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
List<object> ParseArray() {
|
||||
List<object> array = new List<object>();
|
||||
|
||||
// ditch opening bracket
|
||||
json.Read();
|
||||
|
||||
// [
|
||||
var parsing = true;
|
||||
while (parsing) {
|
||||
TOKEN nextToken = NextToken;
|
||||
|
||||
switch (nextToken) {
|
||||
case TOKEN.NONE:
|
||||
return null;
|
||||
case TOKEN.COMMA:
|
||||
continue;
|
||||
case TOKEN.SQUARED_CLOSE:
|
||||
parsing = false;
|
||||
break;
|
||||
default:
|
||||
object value = ParseByToken(nextToken);
|
||||
|
||||
array.Add(value);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return array;
|
||||
}
|
||||
|
||||
object ParseValue() {
|
||||
TOKEN nextToken = NextToken;
|
||||
return ParseByToken(nextToken);
|
||||
}
|
||||
|
||||
object ParseByToken(TOKEN token) {
|
||||
switch (token) {
|
||||
case TOKEN.STRING:
|
||||
return ParseString();
|
||||
case TOKEN.NUMBER:
|
||||
return ParseNumber();
|
||||
case TOKEN.CURLY_OPEN:
|
||||
return ParseObject();
|
||||
case TOKEN.SQUARED_OPEN:
|
||||
return ParseArray();
|
||||
case TOKEN.TRUE:
|
||||
return true;
|
||||
case TOKEN.FALSE:
|
||||
return false;
|
||||
case TOKEN.NULL:
|
||||
return null;
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
string ParseString() {
|
||||
StringBuilder s = new StringBuilder();
|
||||
char c;
|
||||
|
||||
// ditch opening quote
|
||||
json.Read();
|
||||
|
||||
bool parsing = true;
|
||||
while (parsing) {
|
||||
|
||||
if (json.Peek() == -1) {
|
||||
parsing = false;
|
||||
break;
|
||||
}
|
||||
|
||||
c = NextChar;
|
||||
switch (c) {
|
||||
case '"':
|
||||
parsing = false;
|
||||
break;
|
||||
case '\\':
|
||||
if (json.Peek() == -1) {
|
||||
parsing = false;
|
||||
break;
|
||||
}
|
||||
|
||||
c = NextChar;
|
||||
switch (c) {
|
||||
case '"':
|
||||
case '\\':
|
||||
case '/':
|
||||
s.Append(c);
|
||||
break;
|
||||
case 'b':
|
||||
s.Append('\b');
|
||||
break;
|
||||
case 'f':
|
||||
s.Append('\f');
|
||||
break;
|
||||
case 'n':
|
||||
s.Append('\n');
|
||||
break;
|
||||
case 'r':
|
||||
s.Append('\r');
|
||||
break;
|
||||
case 't':
|
||||
s.Append('\t');
|
||||
break;
|
||||
case 'u':
|
||||
var hex = new char[4];
|
||||
|
||||
for (int i=0; i< 4; i++) {
|
||||
hex[i] = NextChar;
|
||||
}
|
||||
|
||||
s.Append((char) Convert.ToInt32(new string(hex), 16));
|
||||
break;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
s.Append(c);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return s.ToString();
|
||||
}
|
||||
|
||||
object ParseNumber() {
|
||||
string number = NextWord;
|
||||
|
||||
if (number.IndexOf('.') == -1) {
|
||||
long parsedInt;
|
||||
Int64.TryParse(number, out parsedInt);
|
||||
return parsedInt;
|
||||
}
|
||||
|
||||
double parsedDouble;
|
||||
Double.TryParse(number, out parsedDouble);
|
||||
return parsedDouble;
|
||||
}
|
||||
|
||||
void EatWhitespace() {
|
||||
while (Char.IsWhiteSpace(PeekChar)) {
|
||||
json.Read();
|
||||
|
||||
if (json.Peek() == -1) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
char PeekChar {
|
||||
get {
|
||||
return Convert.ToChar(json.Peek());
|
||||
}
|
||||
}
|
||||
|
||||
char NextChar {
|
||||
get {
|
||||
return Convert.ToChar(json.Read());
|
||||
}
|
||||
}
|
||||
|
||||
string NextWord {
|
||||
get {
|
||||
StringBuilder word = new StringBuilder();
|
||||
|
||||
while (!IsWordBreak(PeekChar)) {
|
||||
word.Append(NextChar);
|
||||
|
||||
if (json.Peek() == -1) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return word.ToString();
|
||||
}
|
||||
}
|
||||
|
||||
TOKEN NextToken {
|
||||
get {
|
||||
EatWhitespace();
|
||||
|
||||
if (json.Peek() == -1) {
|
||||
return TOKEN.NONE;
|
||||
}
|
||||
|
||||
switch (PeekChar) {
|
||||
case '{':
|
||||
return TOKEN.CURLY_OPEN;
|
||||
case '}':
|
||||
json.Read();
|
||||
return TOKEN.CURLY_CLOSE;
|
||||
case '[':
|
||||
return TOKEN.SQUARED_OPEN;
|
||||
case ']':
|
||||
json.Read();
|
||||
return TOKEN.SQUARED_CLOSE;
|
||||
case ',':
|
||||
json.Read();
|
||||
return TOKEN.COMMA;
|
||||
case '"':
|
||||
return TOKEN.STRING;
|
||||
case ':':
|
||||
return TOKEN.COLON;
|
||||
case '0':
|
||||
case '1':
|
||||
case '2':
|
||||
case '3':
|
||||
case '4':
|
||||
case '5':
|
||||
case '6':
|
||||
case '7':
|
||||
case '8':
|
||||
case '9':
|
||||
case '-':
|
||||
return TOKEN.NUMBER;
|
||||
}
|
||||
|
||||
switch (NextWord) {
|
||||
case "false":
|
||||
return TOKEN.FALSE;
|
||||
case "true":
|
||||
return TOKEN.TRUE;
|
||||
case "null":
|
||||
return TOKEN.NULL;
|
||||
}
|
||||
|
||||
return TOKEN.NONE;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Converts a IDictionary / IList object or a simple type (string, int, etc.) into a JSON string
|
||||
/// </summary>
|
||||
/// <param name="json">A Dictionary<string, object> / List<object></param>
|
||||
/// <returns>A JSON encoded string, or null if object 'json' is not serializable</returns>
|
||||
public static string Serialize(object obj) {
|
||||
return Serializer.Serialize(obj);
|
||||
}
|
||||
|
||||
sealed class Serializer {
|
||||
StringBuilder builder;
|
||||
|
||||
Serializer() {
|
||||
builder = new StringBuilder();
|
||||
}
|
||||
|
||||
public static string Serialize(object obj) {
|
||||
var instance = new Serializer();
|
||||
|
||||
instance.SerializeValue(obj);
|
||||
|
||||
return instance.builder.ToString();
|
||||
}
|
||||
|
||||
void SerializeValue(object value) {
|
||||
IList asList;
|
||||
IDictionary asDict;
|
||||
string asStr;
|
||||
|
||||
if (value == null) {
|
||||
builder.Append("null");
|
||||
} else if ((asStr = value as string) != null) {
|
||||
SerializeString(asStr);
|
||||
} else if (value is bool) {
|
||||
builder.Append((bool) value ? "true" : "false");
|
||||
} else if ((asList = value as IList) != null) {
|
||||
SerializeArray(asList);
|
||||
} else if ((asDict = value as IDictionary) != null) {
|
||||
SerializeObject(asDict);
|
||||
} else if (value is char) {
|
||||
SerializeString(new string((char) value, 1));
|
||||
} else {
|
||||
SerializeOther(value);
|
||||
}
|
||||
}
|
||||
|
||||
void SerializeObject(IDictionary obj) {
|
||||
bool first = true;
|
||||
|
||||
builder.Append('{');
|
||||
|
||||
foreach (object e in obj.Keys) {
|
||||
if (!first) {
|
||||
builder.Append(',');
|
||||
}
|
||||
|
||||
SerializeString(e.ToString());
|
||||
builder.Append(':');
|
||||
|
||||
SerializeValue(obj[e]);
|
||||
|
||||
first = false;
|
||||
}
|
||||
|
||||
builder.Append('}');
|
||||
}
|
||||
|
||||
void SerializeArray(IList anArray) {
|
||||
builder.Append('[');
|
||||
|
||||
bool first = true;
|
||||
|
||||
foreach (object obj in anArray) {
|
||||
if (!first) {
|
||||
builder.Append(',');
|
||||
}
|
||||
|
||||
SerializeValue(obj);
|
||||
|
||||
first = false;
|
||||
}
|
||||
|
||||
builder.Append(']');
|
||||
}
|
||||
|
||||
void SerializeString(string str) {
|
||||
builder.Append('\"');
|
||||
|
||||
char[] charArray = str.ToCharArray();
|
||||
foreach (var c in charArray) {
|
||||
switch (c) {
|
||||
case '"':
|
||||
builder.Append("\\\"");
|
||||
break;
|
||||
case '\\':
|
||||
builder.Append("\\\\");
|
||||
break;
|
||||
case '\b':
|
||||
builder.Append("\\b");
|
||||
break;
|
||||
case '\f':
|
||||
builder.Append("\\f");
|
||||
break;
|
||||
case '\n':
|
||||
builder.Append("\\n");
|
||||
break;
|
||||
case '\r':
|
||||
builder.Append("\\r");
|
||||
break;
|
||||
case '\t':
|
||||
builder.Append("\\t");
|
||||
break;
|
||||
default:
|
||||
int codepoint = Convert.ToInt32(c);
|
||||
if ((codepoint >= 32) && (codepoint <= 126)) {
|
||||
builder.Append(c);
|
||||
} else {
|
||||
builder.Append("\\u");
|
||||
builder.Append(codepoint.ToString("x4"));
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
builder.Append('\"');
|
||||
}
|
||||
|
||||
void SerializeOther(object value) {
|
||||
// NOTE: decimals lose precision during serialization.
|
||||
// They always have, I'm just letting you know.
|
||||
// Previously floats and doubles lost precision too.
|
||||
if (value is float) {
|
||||
builder.Append(((float) value).ToString("R"));
|
||||
} else if (value is int
|
||||
|| value is uint
|
||||
|| value is long
|
||||
|| value is sbyte
|
||||
|| value is byte
|
||||
|| value is short
|
||||
|| value is ushort
|
||||
|| value is ulong) {
|
||||
builder.Append(value);
|
||||
} else if (value is double
|
||||
|| value is decimal) {
|
||||
builder.Append(Convert.ToDouble(value).ToString("R"));
|
||||
} else {
|
||||
SerializeString(value.ToString());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bc3d1c806d507463e9b560eb09d8eb0e
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace AppsFlyerSDK
|
||||
{
|
||||
public enum AFPurchaseType
|
||||
{
|
||||
Subscription = 0,
|
||||
OneTimePurchase = 1
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
//
|
||||
/// </summary>
|
||||
public class AFPurchaseDetailsAndroid
|
||||
|
||||
{
|
||||
public AFPurchaseType purchaseType { get; private set; }
|
||||
public string purchaseToken { get; private set; }
|
||||
public string productId { get; private set; }
|
||||
public string price { get; private set; }
|
||||
public string currency { get; private set; }
|
||||
|
||||
public AFPurchaseDetailsAndroid(AFPurchaseType type, String purchaseToken, String productId, String price, String currency)
|
||||
{
|
||||
this.purchaseType = type;
|
||||
this.purchaseToken = purchaseToken;
|
||||
this.productId = productId;
|
||||
this.price = price;
|
||||
this.currency = currency;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d71b3864006f94ac08938b2ebdc940bc
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace AppsFlyerSDK
|
||||
{
|
||||
/// <summary>
|
||||
//
|
||||
/// </summary>
|
||||
public class AFSDKPurchaseDetailsIOS
|
||||
{
|
||||
public string productId { get; private set; }
|
||||
public string price { get; private set; }
|
||||
public string currency { get; private set; }
|
||||
public string transactionId { get; private set; }
|
||||
|
||||
private AFSDKPurchaseDetailsIOS(string productId, string price, string currency, string transactionId)
|
||||
{
|
||||
this.productId = productId;
|
||||
this.price = price;
|
||||
this.currency = currency;
|
||||
this.transactionId = transactionId;
|
||||
}
|
||||
|
||||
public static AFSDKPurchaseDetailsIOS Init(string productId, string price, string currency, string transactionId)
|
||||
{
|
||||
return new AFSDKPurchaseDetailsIOS(productId, price, currency, transactionId);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 44bb6c4472701416080eb050732075ea
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,38 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace AppsFlyerSDK
|
||||
{
|
||||
public enum AFSDKValidateAndLogStatus
|
||||
{
|
||||
AFSDKValidateAndLogStatusSuccess,
|
||||
AFSDKValidateAndLogStatusFailure,
|
||||
AFSDKValidateAndLogStatusError
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
//
|
||||
/// </summary>
|
||||
public class AFSDKValidateAndLogResult
|
||||
{
|
||||
public AFSDKValidateAndLogStatus status { get; private set; }
|
||||
public Dictionary<string, object> result { get; private set; }
|
||||
public Dictionary<string, object> errorData { get; private set; }
|
||||
public string error { get; private set; }
|
||||
|
||||
private AFSDKValidateAndLogResult(AFSDKValidateAndLogStatus status, Dictionary<string, object> result, Dictionary<string, object> errorData, string error)
|
||||
{
|
||||
this.status = status;
|
||||
this.result = result;
|
||||
this.errorData = errorData;
|
||||
this.error = error;
|
||||
}
|
||||
|
||||
public static AFSDKValidateAndLogResult Init(AFSDKValidateAndLogStatus status, Dictionary<string, object> result, Dictionary<string, object> errorData, string error)
|
||||
{
|
||||
return new AFSDKValidateAndLogResult(status, result, errorData, error);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2df1c6f1eab2e4849bf2762a8d78933f
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "AppsFlyer",
|
||||
"references": [],
|
||||
"includePlatforms": [],
|
||||
"excludePlatforms": [],
|
||||
"allowUnsafeCode": false,
|
||||
"overrideReferences": false,
|
||||
"precompiledReferences": [],
|
||||
"autoReferenced": true,
|
||||
"defineConstraints": [],
|
||||
"versionDefines": [],
|
||||
"noEngineReferences": false
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2a37df438292d4903b4e5159c5de3bf9
|
||||
AssemblyDefinitionImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
+1099
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 45161025a517d427381d3d06153a5ad3
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,846 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace AppsFlyerSDK
|
||||
{
|
||||
|
||||
#if UNITY_ANDROID
|
||||
public class AppsFlyerAndroid : IAppsFlyerAndroidBridge
|
||||
{
|
||||
public bool isInit { get; set; }
|
||||
|
||||
private static AndroidJavaClass appsFlyerAndroid = new AndroidJavaClass("com.appsflyer.unity.AppsFlyerAndroidWrapper");
|
||||
|
||||
public AppsFlyerAndroid() { }
|
||||
|
||||
/// <summary>
|
||||
/// Use this method to init the sdk for the application.
|
||||
/// Call this method before startSDK.
|
||||
/// </summary>
|
||||
/// <param name="devkey"> AppsFlyer's Dev-Key, which is accessible from your AppsFlyer account under 'App Settings' in the dashboard.</param>
|
||||
/// <param name="gameObject">The current game object. This is used to get the conversion data callbacks. Pass null if you do not need the callbacks.</param>
|
||||
public void initSDK(string devkey, MonoBehaviour gameObject)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("initSDK", devkey, gameObject ? gameObject.name : null);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Use this method to start the sdk for the application.
|
||||
/// The AppsFlyer's Dev-Key must be provided.
|
||||
/// </summary>
|
||||
/// <param name="devkey"> AppsFlyer's Dev-Key, which is accessible from your AppsFlyer account under 'App Settings' in the dashboard.</param>
|
||||
public void startSDK(bool onRequestResponse, string CallBackObjectName)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("startTracking", onRequestResponse, CallBackObjectName);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Once this API is invoked, our SDK no longer communicates with our servers and stops functioning.
|
||||
/// In some extreme cases you might want to shut down all SDK activity due to legal and privacy compliance.
|
||||
/// This can be achieved with the stopSDK API.
|
||||
/// </summary>
|
||||
/// <param name="isSDKStopped">boolean should SDK be stopped.</param>
|
||||
public void stopSDK(bool isSDKStopped)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("stopTracking", isSDKStopped);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get the AppsFlyer SDK version used in app.
|
||||
/// </summary>
|
||||
/// <returns>AppsFlyer SDK version.</returns>
|
||||
public string getSdkVersion()
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
return appsFlyerAndroid.CallStatic<string>("getSdkVersion");
|
||||
#else
|
||||
return "";
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Manually pass the Firebase / GCM Device Token for Uninstall measurement.
|
||||
/// </summary>
|
||||
/// <param name="token">Firebase Device Token.</param>
|
||||
public void updateServerUninstallToken(string token)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("updateServerUninstallToken", token);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Enables Debug logs for the AppsFlyer SDK.
|
||||
/// Should only be set to true in development / debug.
|
||||
/// </summary>
|
||||
/// <param name="shouldEnable">shouldEnable boolean.</param>
|
||||
public void setIsDebug(bool shouldEnable)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setIsDebug", shouldEnable);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// By default, IMEI and Android ID are not collected by the SDK if the OS version is higher than KitKat (4.4)
|
||||
/// and the device contains Google Play Services(on SDK versions 4.8.8 and below the specific app needed GPS).
|
||||
/// Use this API to explicitly send IMEI to AppsFlyer.
|
||||
/// </summary>
|
||||
/// <param name="aImei">device's IMEI.</param>
|
||||
public void setImeiData(string aImei)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setImeiData", aImei);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// By default, IMEI and Android ID are not collected by the SDK if the OS version is higher than KitKat(4.4)
|
||||
/// and the device contains Google Play Services(on SDK versions 4.8.8 and below the specific app needed GPS).
|
||||
/// Use this API to explicitly send Android ID to AppsFlyer.
|
||||
/// </summary>
|
||||
/// <param name="aAndroidId">device's Android ID.</param>
|
||||
public void setAndroidIdData(string aAndroidId)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setAndroidIdData", aAndroidId);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Setting your own customer ID enables you to cross-reference your own unique ID with AppsFlyer’s unique ID and the other devices’ IDs.
|
||||
/// This ID is available in AppsFlyer CSV reports along with Postback APIs for cross-referencing with your internal IDs.
|
||||
/// </summary>
|
||||
/// <param name="id">Customer ID for client.</param>
|
||||
public void setCustomerUserId(string id)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setCustomerUserId", id);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// It is possible to delay the SDK Initialization until the customerUserID is set.
|
||||
/// This feature makes sure that the SDK doesn't begin functioning until the customerUserID is provided.
|
||||
/// If this API is used, all in-app events and any other SDK API calls are discarded, until the customerUserID is provided.
|
||||
/// </summary>
|
||||
/// <param name="wait">wait boolean.</param>
|
||||
public void waitForCustomerUserId(bool wait)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("waitForCustomerUserId", wait);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Use this API to provide the SDK with the relevant customer user id and trigger the SDK to begin its normal activity.
|
||||
/// </summary>
|
||||
/// <param name="id">Customer ID for client.</param>
|
||||
public void setCustomerIdAndStartSDK(string id)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setCustomerIdAndTrack", id);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get the current AF_STORE value.
|
||||
/// </summary>
|
||||
/// <returns>AF_Store value.</returns>
|
||||
public string getOutOfStore()
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
return appsFlyerAndroid.CallStatic<string>("getOutOfStore");
|
||||
#else
|
||||
return "";
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Manually set the AF_STORE value.
|
||||
/// </summary>
|
||||
/// <param name="sourceName">value to be set.</param>
|
||||
public void setOutOfStore(string sourceName)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setOutOfStore", sourceName);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Set the OneLink ID that should be used for User-Invites.
|
||||
/// The link that is generated for the user invite will use this OneLink as the base link.
|
||||
/// </summary>
|
||||
/// <param name="oneLinkId">OneLink ID obtained from the AppsFlyer Dashboard.</param>
|
||||
public void setAppInviteOneLinkID(string oneLinkId)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setAppInviteOneLinkID", oneLinkId);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Set additional data to be sent to AppsFlyer.
|
||||
/// </summary>
|
||||
/// <param name="customData">additional data Dictionary.</param>
|
||||
public void setAdditionalData(Dictionary<string, string> customData)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setAdditionalData", convertDictionaryToJavaMap(customData));
|
||||
#endif
|
||||
}
|
||||
|
||||
//// <summary>
|
||||
/// Set the deepLink timeout value that should be used for DDL.
|
||||
/// </summary>
|
||||
/// <param name="deepLinkTimeout">deepLink timeout in milliseconds.</param>
|
||||
public void setDeepLinkTimeout(long deepLinkTimeout)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setDeepLinkTimeout", deepLinkTimeout);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Set the user emails.
|
||||
/// </summary>
|
||||
/// <param name="emails">User emails.</param>
|
||||
public void setUserEmails(params string[] userEmails)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setUserEmails", (object)userEmails);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Set the user phone number.
|
||||
/// </summary>
|
||||
/// <param name="phoneNumber">User phoneNumber.</param>
|
||||
public void setPhoneNumber(string phoneNumber){
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setPhoneNumber", phoneNumber);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Set the user emails and encrypt them.
|
||||
/// cryptMethod Encryption method:
|
||||
/// EmailCryptType.EmailCryptTypeMD5
|
||||
/// EmailCryptType.EmailCryptTypeSHA1
|
||||
/// EmailCryptType.EmailCryptTypeSHA256
|
||||
/// EmailCryptType.EmailCryptTypeNone
|
||||
/// </summary>
|
||||
/// <param name="cryptMethod">Encryption method.</param>
|
||||
/// <param name="emails">User emails.</param>
|
||||
public void setUserEmails(EmailCryptType cryptMethod, params string[] emails)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setUserEmails", getEmailType(cryptMethod), (object)emails);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Opt-out of collection of Android ID.
|
||||
/// If the app does NOT contain Google Play Services, Android ID is collected by the SDK.
|
||||
/// However, apps with Google play services should avoid Android ID collection as this is in violation of the Google Play policy.
|
||||
/// </summary>
|
||||
/// <param name="isCollect">boolean, false to opt-out.</param>
|
||||
public void setCollectAndroidID(bool isCollect)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setCollectAndroidID", isCollect);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Opt-out of collection of IMEI.
|
||||
/// If the app does NOT contain Google Play Services, device IMEI is collected by the SDK.
|
||||
/// However, apps with Google play services should avoid IMEI collection as this is in violation of the Google Play policy.
|
||||
/// </summary>
|
||||
/// <param name="isCollect">boolean, false to opt-out.</param>
|
||||
public void setCollectIMEI(bool isCollect)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setCollectIMEI", isCollect);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Advertisers can wrap AppsFlyer OneLink within another Universal Link.
|
||||
/// This Universal Link will invoke the app but any deep linking data will not propagate to AppsFlyer.
|
||||
/// </summary>
|
||||
/// <param name="urls">Array of urls.</param>
|
||||
public void setResolveDeepLinkURLs(params string[] urls)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setResolveDeepLinkURLs", (object)urls);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Advertisers can use this method to set vanity onelink domains.
|
||||
/// </summary>
|
||||
/// <param name="domains">Array of domains.</param>
|
||||
public void setOneLinkCustomDomain(params string[] domains)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setOneLinkCustomDomain", (object)domains);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Manually set that the application was updated.
|
||||
/// </summary>
|
||||
/// <param name="isUpdate">isUpdate boolean value.</param>
|
||||
public void setIsUpdate(bool isUpdate)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setIsUpdate", isUpdate);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Setting user local currency code for in-app purchases.
|
||||
/// The currency code should be a 3 character ISO 4217 code. (default is USD).
|
||||
/// You can set the currency code for all events by calling the following method.
|
||||
/// </summary>
|
||||
/// <param name="currencyCode">3 character ISO 4217 code.</param>
|
||||
public void setCurrencyCode(string currencyCode)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setCurrencyCode", currencyCode);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Manually record the location of the user.
|
||||
/// </summary>
|
||||
/// <param name="latitude">latitude as double.</param>
|
||||
/// <param name="longitude">longitude as double.</param>
|
||||
public void recordLocation(double latitude, double longitude)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("trackLocation", latitude, longitude);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Send an In-App Event.
|
||||
/// In-App Events provide insight on what is happening in your app.
|
||||
/// </summary>
|
||||
/// <param name="eventName">Event Name as String.</param>
|
||||
/// <param name="eventValues">Event Values as Dictionary.</param>
|
||||
public void sendEvent(string eventName, Dictionary<string, string> eventValues)
|
||||
{
|
||||
sendEvent(eventName, eventValues, false, AppsFlyer.CallBackObjectName);
|
||||
}
|
||||
|
||||
public void sendEvent(string eventName, Dictionary<string, string> eventValues, bool shouldCallback, string callBackObjectName)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("trackEvent", eventName, convertDictionaryToJavaMap(eventValues), shouldCallback, callBackObjectName);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Anonymize user Data.
|
||||
/// Use this API during the SDK Initialization to explicitly anonymize a user's installs, events and sessions.
|
||||
/// Default is false.
|
||||
/// </summary>
|
||||
/// <param name="isDisabled">isDisabled boolean.</param>
|
||||
public void anonymizeUser(bool isDisabled)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setDeviceTrackingDisabled", isDisabled);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Calling enableTCFDataCollection(true) will enable collecting and sending any TCF related data.
|
||||
/// Calling enableTCFDataCollection(false) will disable the collection of TCF related data and from sending it.
|
||||
/// </summary>
|
||||
/// <param name = "shouldCollectTcfData" >should start TCF Data collection boolean.</param>
|
||||
public void enableTCFDataCollection(bool shouldCollectTcfData)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("enableTCFDataCollection", shouldCollectTcfData);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Enable the collection of Facebook Deferred AppLinks.
|
||||
/// Requires Facebook SDK and Facebook app on target/client device.
|
||||
/// This API must be invoked prior to initializing the AppsFlyer SDK in order to function properly.
|
||||
/// </summary>
|
||||
/// <param name="isEnabled">should Facebook's deferred app links be processed by the AppsFlyer SDK.</param>
|
||||
public void enableFacebookDeferredApplinks(bool isEnabled)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("enableFacebookDeferredApplinks", isEnabled);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Sets or updates the user consent data related to GDPR and DMA regulations for advertising and data usage purposes within the application.
|
||||
/// call this method when GDPR user is true
|
||||
/// </summary>
|
||||
/// <param name = "hasConsentForDataUsage" >hasConsentForDataUsage boolean.</param>
|
||||
/// <param name = "hasConsentForAdsPersonalization" >hasConsentForAdsPersonalization boolean.</param>
|
||||
public void setConsentData(AppsFlyerConsent appsFlyerConsent)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setConsentData", appsFlyerConsent.isUserSubjectToGDPR, appsFlyerConsent.hasConsentForDataUsage, appsFlyerConsent.hasConsentForAdsPersonalization);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Logs ad revenue data along with additional parameters if provided.
|
||||
/// <param name = "adRevenueData" >instance of AFAdRevenueData containing ad revenue information.</param>
|
||||
/// <param name = "additionalParameters" >An optional map of additional parameters to be logged with ad revenue data. This can be null if there are no additional parameters.</param>
|
||||
public void logAdRevenue(AFAdRevenueData adRevenueData, Dictionary<string, string> additionalParameters)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("logAdRevenue", adRevenueData.monetizationNetwork, getMediationNetwork(adRevenueData.mediationNetwork), adRevenueData.currencyIso4217Code, adRevenueData.eventRevenue, convertDictionaryToJavaMap(additionalParameters));
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Restrict reengagement via deep-link to once per each unique deep-link.
|
||||
/// Otherwise deep re-occurring deep-links will be permitted for non-singleTask Activities and deep-linking via AppsFlyer deep-links.
|
||||
/// The default value is false.
|
||||
/// </summary>
|
||||
/// <param name="doConsume">doConsume boolean.</param>
|
||||
public void setConsumeAFDeepLinks(bool doConsume)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setConsumeAFDeepLinks", doConsume);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Specify the manufacturer or media source name to which the preinstall is attributed.
|
||||
/// </summary>
|
||||
/// <param name="mediaSource">Manufacturer or media source name for preinstall attribution.</param>
|
||||
/// <param name="campaign">Campaign name for preinstall attribution.</param>
|
||||
/// <param name="siteId">Site ID for preinstall attribution.</param>
|
||||
public void setPreinstallAttribution(string mediaSource, string campaign, string siteId)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setPreinstallAttribution", mediaSource, campaign, siteId);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Boolean indicator for preinstall by Manufacturer.
|
||||
/// </summary>
|
||||
/// <returns>boolean isPreInstalledApp.</returns>
|
||||
public bool isPreInstalledApp()
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
return appsFlyerAndroid.CallStatic<bool>("isPreInstalledApp");
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get the Facebook attribution ID, if one exists.
|
||||
/// </summary>
|
||||
/// <returns>string Facebook attribution ID.</returns>
|
||||
public string getAttributionId()
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
return appsFlyerAndroid.CallStatic<string>("getAttributionId");
|
||||
#else
|
||||
return "";
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get AppsFlyer's unique device ID is created for every new install of an app.
|
||||
/// </summary>
|
||||
/// <returns>AppsFlyer's unique device ID.</returns>
|
||||
public string getAppsFlyerId()
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
return appsFlyerAndroid.CallStatic<string>("getAppsFlyerId");
|
||||
#else
|
||||
return "";
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// API for server verification of in-app purchases.
|
||||
/// An af_purchase event with the relevant values will be automatically sent if the validation is successful.
|
||||
/// </summary>
|
||||
/// <param name="publicKey">License Key obtained from the Google Play Console.</param>
|
||||
/// <param name="signature"><code>data.INAPP_DATA_SIGNATURE</code> from <code>onActivityResult(int requestCode, int resultCode, Intent data)</code></param>
|
||||
/// <param name="purchaseData"><code>data.INAPP_PURCHASE_DATA</code> from <code>onActivityResult(int requestCode, int resultCode, Intent data)</code></param>
|
||||
/// <param name="price">Purchase price, should be derived from <code>skuDetails.getStringArrayList("DETAILS_LIST")</code></param>
|
||||
/// <param name="currency">Purchase currency, should be derived from <code>skuDetails.getStringArrayList("DETAILS_LIST")</code></param>
|
||||
/// <param name="additionalParameters">additionalParameters Freehand parameters to be sent with the purchase (if validated).</param>
|
||||
public void validateAndSendInAppPurchase(string publicKey, string signature, string purchaseData, string price, string currency, Dictionary<string, string> additionalParameters, MonoBehaviour gameObject)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("validateAndTrackInAppPurchase", publicKey, signature, purchaseData, price, currency, convertDictionaryToJavaMap(additionalParameters), gameObject ? gameObject.name : null);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// API for server verification of in-app purchases.
|
||||
/// An af_purchase event with the relevant values will be automatically sent if the validation is successful.
|
||||
/// </summary>
|
||||
/// <param name="details">AFPurchaseDetailsAndroid instance.</param>
|
||||
/// <param name="additionalParameters">additionalParameters Freehand parameters to be sent with the purchase (if validated).</param>
|
||||
public void validateAndSendInAppPurchase(AFPurchaseDetailsAndroid details, Dictionary<string, string> additionalParameters, MonoBehaviour gameObject)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("validateAndTrackInAppPurchaseV2", (int)details.purchaseType, details.purchaseToken, details.productId, details.price, details.currency, convertDictionaryToJavaMap(additionalParameters), gameObject ? gameObject.name : null);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Was the stopSDK(boolean) API set to true.
|
||||
/// </summary>
|
||||
/// <returns>boolean isSDKStopped.</returns>
|
||||
public bool isSDKStopped()
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
return appsFlyerAndroid.CallStatic<bool>("isTrackingStopped");
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Set a custom value for the minimum required time between sessions.
|
||||
/// By default, at least 5 seconds must lapse between 2 app launches to count as separate 2 sessions.
|
||||
/// </summary>
|
||||
/// <param name="seconds">minimum time between 2 separate sessions in seconds.</param>
|
||||
public void setMinTimeBetweenSessions(int seconds)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setMinTimeBetweenSessions", seconds);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Set a custom host.
|
||||
/// </summary>
|
||||
/// <param name="hostPrefixName">Host prefix.</param>
|
||||
/// <param name="hostName">Host name.</param>
|
||||
public void setHost(string hostPrefixName, string hostName)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setHost", hostPrefixName, hostName);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get the host name.
|
||||
/// Default value is "appsflyer.com".
|
||||
/// </summary>
|
||||
/// <returns>Host name.</returns>
|
||||
public string getHostName()
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
return appsFlyerAndroid.CallStatic<string>("getHostName");
|
||||
#else
|
||||
return "";
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get the custom host prefix.
|
||||
/// </summary>
|
||||
/// <returns>Host prefix.</returns>
|
||||
public string getHostPrefix()
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
return appsFlyerAndroid.CallStatic<string>("getHostPrefix");
|
||||
#else
|
||||
return "";
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Used by advertisers to exclude all networks/integrated partners from getting data.
|
||||
/// </summary>
|
||||
public void setSharingFilterForAllPartners()
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setSharingFilterForAllPartners");
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Used by advertisers to set some (one or more) networks/integrated partners to exclude from getting data.
|
||||
/// </summary>
|
||||
/// <param name="partners">partners to exclude from getting data</param>
|
||||
public void setSharingFilter(params string[] partners)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setSharingFilter", (object)partners);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Lets you configure how which partners should the SDK exclude from data-sharing.
|
||||
/// </summary>
|
||||
/// <param name="partners">partners to exclude from getting data</param>
|
||||
public static void setSharingFilterForPartners(params string[] partners)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setSharingFilterForPartners", (object)partners);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Register a Conversion Data Listener.
|
||||
/// Allows the developer to access the user attribution data in real-time for every new install, directly from the SDK level.
|
||||
/// By doing this you can serve users with personalized content or send them to specific activities within the app,
|
||||
/// which can greatly enhance their engagement with your app.
|
||||
/// </summary>
|
||||
public void getConversionData(string objectName)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("getConversionData", objectName);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Register a validation listener for the validateAndSendInAppPurchase API.
|
||||
/// </summary>
|
||||
public void initInAppPurchaseValidatorListener(MonoBehaviour gameObject)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("initInAppPurchaseValidatorListener", gameObject ? gameObject.name : null);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// setCollectOaid
|
||||
/// You must include the appsflyer oaid library for this api to work.
|
||||
/// </summary>
|
||||
/// <param name="isCollect">isCollect oaid - set fasle to opt out</param>
|
||||
public void setCollectOaid(bool isCollect)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setCollectOaid", isCollect);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Use the following API to attribute the click and launch the app store's app page.
|
||||
/// </summary>
|
||||
/// <param name="promoted_app_id">promoted App ID</param>
|
||||
/// <param name="campaign">cross promotion campaign</param>
|
||||
/// <param name="userParams">additional user params</param>
|
||||
public void attributeAndOpenStore(string promoted_app_id, string campaign, Dictionary<string, string> userParams, MonoBehaviour gameObject)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("attributeAndOpenStore", promoted_app_id, campaign, convertDictionaryToJavaMap(userParams));
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To attribute an impression use the following API call.
|
||||
/// Make sure to use the promoted App ID as it appears within the AppsFlyer dashboard.
|
||||
/// </summary>
|
||||
/// <param name="appID">promoted App ID.</param>
|
||||
/// <param name="campaign">cross promotion campaign.</param>
|
||||
/// <param name="parameters">parameters Dictionary.</param>
|
||||
public void recordCrossPromoteImpression(string appID, string campaign, Dictionary<string, string> parameters)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("recordCrossPromoteImpression", appID, campaign, convertDictionaryToJavaMap(parameters));
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The LinkGenerator class builds the invite URL according to various setter methods which allow passing on additional information on the click.
|
||||
/// See - https://support.appsflyer.com/hc/en-us/articles/115004480866-User-invite-attribution-
|
||||
/// </summary>
|
||||
/// <param name="parameters">parameters Dictionary.</param>
|
||||
public void generateUserInviteLink(Dictionary<string, string> parameters, MonoBehaviour gameObject)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("createOneLinkInviteListener", convertDictionaryToJavaMap(parameters), gameObject ? gameObject.name : null);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// To measure push notifications as part of a retargeting campaign.
|
||||
/// </summary>
|
||||
public void handlePushNotifications(){
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("handlePushNotifications");
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Use this method if you’re integrating your app with push providers
|
||||
/// that don’t use the default push notification JSON schema the SDK expects.
|
||||
/// See docs for more info.
|
||||
/// </summary>
|
||||
/// <param name="paths">array of nested json path</param>
|
||||
public void addPushNotificationDeepLinkPath(params string[] paths)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("addPushNotificationDeepLinkPath", (object)paths);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// subscribe to unified deep link callbacks
|
||||
/// </summary>
|
||||
public void subscribeForDeepLink(string objectName){
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("subscribeForDeepLink", objectName);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Disables collection of various Advertising IDs by the SDK. This includes Google Advertising ID (GAID), OAID and Amazon Advertising ID (AAID)
|
||||
/// </summary>
|
||||
/// <param name="disable">disable boolean.</param>
|
||||
public void setDisableAdvertisingIdentifiers(bool disable)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setDisableAdvertisingIdentifiers", disable);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Allows sending custom data for partner integration purposes.
|
||||
/// </summary>
|
||||
public void setPartnerData(string partnerId, Dictionary<string, string> partnerInfo)
|
||||
{
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setPartnerData", partnerId, convertDictionaryToJavaMap(partnerInfo));
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Use to opt-out of collecting the network operator name (carrier) and sim operator name from the device.
|
||||
/// </summary>
|
||||
public void setDisableNetworkData(bool disable) {
|
||||
#if !UNITY_EDITOR
|
||||
appsFlyerAndroid.CallStatic("setDisableNetworkData", disable);
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Internal Helper Method.
|
||||
/// </summary>
|
||||
private static AndroidJavaObject getEmailType(EmailCryptType cryptType)
|
||||
{
|
||||
AndroidJavaClass emailsCryptTypeEnum = new AndroidJavaClass("com.appsflyer.AppsFlyerProperties$EmailsCryptType");
|
||||
AndroidJavaObject emailsCryptType;
|
||||
|
||||
switch (cryptType)
|
||||
{
|
||||
case EmailCryptType.EmailCryptTypeSHA256:
|
||||
emailsCryptType = emailsCryptTypeEnum.GetStatic<AndroidJavaObject>("SHA256");
|
||||
break;
|
||||
default:
|
||||
emailsCryptType = emailsCryptTypeEnum.GetStatic<AndroidJavaObject>("NONE");
|
||||
break;
|
||||
}
|
||||
|
||||
return emailsCryptType;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Internal Helper Method.
|
||||
/// </summary>
|
||||
private static AndroidJavaObject getMediationNetwork(MediationNetwork mediationNetwork)
|
||||
{
|
||||
AndroidJavaClass mediationNetworkEnumClass = new AndroidJavaClass("com.appsflyer.MediationNetwork");
|
||||
AndroidJavaObject mediationNetworkObject;
|
||||
|
||||
switch (mediationNetwork)
|
||||
{
|
||||
case MediationNetwork.IronSource:
|
||||
mediationNetworkObject = mediationNetworkEnumClass.GetStatic<AndroidJavaObject>("IRONSOURCE");
|
||||
break;
|
||||
case MediationNetwork.ApplovinMax:
|
||||
mediationNetworkObject = mediationNetworkEnumClass.GetStatic<AndroidJavaObject>("APPLOVIN_MAX");
|
||||
break;
|
||||
case MediationNetwork.GoogleAdMob:
|
||||
mediationNetworkObject = mediationNetworkEnumClass.GetStatic<AndroidJavaObject>("GOOGLE_ADMOB");
|
||||
break;
|
||||
case MediationNetwork.Fyber:
|
||||
mediationNetworkObject = mediationNetworkEnumClass.GetStatic<AndroidJavaObject>("FYBER");
|
||||
break;
|
||||
case MediationNetwork.Appodeal:
|
||||
mediationNetworkObject = mediationNetworkEnumClass.GetStatic<AndroidJavaObject>("APPODEAL");
|
||||
break;
|
||||
case MediationNetwork.Admost:
|
||||
mediationNetworkObject = mediationNetworkEnumClass.GetStatic<AndroidJavaObject>("ADMOST");
|
||||
break;
|
||||
case MediationNetwork.Topon:
|
||||
mediationNetworkObject = mediationNetworkEnumClass.GetStatic<AndroidJavaObject>("TOPON");
|
||||
break;
|
||||
case MediationNetwork.Tradplus:
|
||||
mediationNetworkObject = mediationNetworkEnumClass.GetStatic<AndroidJavaObject>("TRADPLUS");
|
||||
break;
|
||||
case MediationNetwork.Yandex:
|
||||
mediationNetworkObject = mediationNetworkEnumClass.GetStatic<AndroidJavaObject>("YANDEX");
|
||||
break;
|
||||
case MediationNetwork.ChartBoost:
|
||||
mediationNetworkObject = mediationNetworkEnumClass.GetStatic<AndroidJavaObject>("CHARTBOOST");
|
||||
break;
|
||||
case MediationNetwork.Unity:
|
||||
mediationNetworkObject = mediationNetworkEnumClass.GetStatic<AndroidJavaObject>("UNITY");
|
||||
break;
|
||||
case MediationNetwork.ToponPte:
|
||||
mediationNetworkObject = mediationNetworkEnumClass.GetStatic<AndroidJavaObject>("TOPON_PTE");
|
||||
break;
|
||||
case MediationNetwork.Custom:
|
||||
mediationNetworkObject = mediationNetworkEnumClass.GetStatic<AndroidJavaObject>("CUSTOM_MEDIATION");
|
||||
break;
|
||||
case MediationNetwork.DirectMonetization:
|
||||
mediationNetworkObject = mediationNetworkEnumClass.GetStatic<AndroidJavaObject>("DIRECT_MONETIZATION_NETWORK");
|
||||
break;
|
||||
default:
|
||||
mediationNetworkObject = mediationNetworkEnumClass.GetStatic<AndroidJavaObject>("NONE");
|
||||
break;
|
||||
}
|
||||
return mediationNetworkObject;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Internal Helper Method.
|
||||
/// </summary>
|
||||
private static AndroidJavaObject convertDictionaryToJavaMap(Dictionary<string, string> dictionary)
|
||||
{
|
||||
AndroidJavaObject map = new AndroidJavaObject("java.util.HashMap");
|
||||
IntPtr putMethod = AndroidJNIHelper.GetMethodID(map.GetRawClass(), "put", "(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;");
|
||||
jvalue[] val;
|
||||
if (dictionary != null)
|
||||
{
|
||||
foreach (var entry in dictionary)
|
||||
{
|
||||
val = AndroidJNIHelper.CreateJNIArgArray(new object[] { entry.Key, entry.Value });
|
||||
AndroidJNI.CallObjectMethod(map.GetRawObject(), putMethod,val);
|
||||
AndroidJNI.DeleteLocalRef(val[0].l);
|
||||
AndroidJNI.DeleteLocalRef(val[1].l);
|
||||
}
|
||||
}
|
||||
|
||||
return map;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 172d18dd98e7e4ed3b30110568b0fae4
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,51 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace AppsFlyerSDK
|
||||
{
|
||||
/// <summary>
|
||||
// Data class representing a user's consent for data processing in accordance with GDPR and DMA
|
||||
// (Digital Markets Act) compliance, specifically regarding advertising preferences.
|
||||
|
||||
// This class should be used to notify and record the user's applicability
|
||||
// under GDPR, their general consent to data usage, and their consent to personalized
|
||||
// advertisements based on user data.
|
||||
|
||||
// Note that the consent for data usage and ads personalization pair is only applicable when the user is
|
||||
// subject to GDPR guidelines. Therefore, the following factory methods should be used accordingly:
|
||||
// - Use [forGDPRUser] when the user is subject to GDPR.
|
||||
// - Use [forNonGDPRUser] when the user is not subject to GDPR.
|
||||
|
||||
// @property isUserSubjectToGDPR Indicates whether GDPR regulations apply to the user (true if the user is
|
||||
// a subject of GDPR). It also serves as a flag for compliance with relevant aspects of DMA regulations.
|
||||
// @property hasConsentForDataUsage Indicates whether the user has consented to the use of their data for advertising
|
||||
// purposes under both GDPR and DMA guidelines (true if the user has consented, nullable if not subject to GDPR).
|
||||
// @property hasConsentForAdsPersonalization Indicates whether the user has consented to the use of their data for
|
||||
// personalized advertising within the boundaries of GDPR and DMA rules (true if the user has consented to
|
||||
// personalized ads, nullable if not subject to GDPR).
|
||||
/// </summary>
|
||||
public class AppsFlyerConsent
|
||||
{
|
||||
public bool isUserSubjectToGDPR { get; private set; }
|
||||
public bool hasConsentForDataUsage { get; private set; }
|
||||
public bool hasConsentForAdsPersonalization { get; private set; }
|
||||
|
||||
private AppsFlyerConsent(bool isGDPR, bool hasForDataUsage, bool hasForAdsPersonalization)
|
||||
{
|
||||
isUserSubjectToGDPR = isGDPR;
|
||||
hasConsentForDataUsage = hasForDataUsage;
|
||||
hasConsentForAdsPersonalization = hasForAdsPersonalization;
|
||||
}
|
||||
|
||||
public static AppsFlyerConsent ForGDPRUser(bool hasConsentForDataUsage, bool hasConsentForAdsPersonalization)
|
||||
{
|
||||
return new AppsFlyerConsent(true, hasConsentForDataUsage, hasConsentForAdsPersonalization);
|
||||
}
|
||||
|
||||
public static AppsFlyerConsent ForNonGDPRUser()
|
||||
{
|
||||
return new AppsFlyerConsent(false, false, false);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a97c986fe4ee0461badf7042e08db3f3
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,218 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace AppsFlyerSDK
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Event args for AppsFlyer requests.
|
||||
/// Used for sessions and in-app events.
|
||||
/// Used to handle post request logic.
|
||||
///
|
||||
/// Examples:
|
||||
/// statusCode / errorDescription
|
||||
///
|
||||
/// 200 - null
|
||||
///
|
||||
/// 10 - "Event timeout. Check 'minTimeBetweenSessions' param"
|
||||
/// 11 - "Skipping event because 'isStopTracking' enabled"
|
||||
/// 40 - Network error: Error description comes from Android
|
||||
/// 41 - "No dev key"
|
||||
/// 50 - "Status code failure" + actual response code from the server
|
||||
///
|
||||
/// </summary>
|
||||
public class AppsFlyerRequestEventArgs : EventArgs
|
||||
{
|
||||
public AppsFlyerRequestEventArgs(int code, string description)
|
||||
{
|
||||
statusCode = code;
|
||||
errorDescription = description;
|
||||
}
|
||||
|
||||
public int statusCode { get; }
|
||||
public string errorDescription { get; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Event args for OnDeepLinkReceived.
|
||||
/// Used to handle deep linking results.
|
||||
/// </summary>
|
||||
public class DeepLinkEventsArgs : EventArgs
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// DeepLink dictionary to get additional parameters
|
||||
/// </summary>
|
||||
public Dictionary<string, object> deepLink;
|
||||
|
||||
/// <summary>
|
||||
/// DeepLink status: FOUND, NOT_FOUND, ERROR
|
||||
/// </summary>
|
||||
public DeepLinkStatus status { get; }
|
||||
|
||||
/// <summary>
|
||||
/// DeepLink error: TIMEOUT, NETWORK, HTTP_STATUS_CODE, UNEXPECTED
|
||||
/// </summary>
|
||||
public DeepLinkError error { get; }
|
||||
|
||||
public string getMatchType()
|
||||
{
|
||||
return getDeepLinkParameter("match_type");
|
||||
}
|
||||
|
||||
public string getDeepLinkValue()
|
||||
{
|
||||
return getDeepLinkParameter("deep_link_value");
|
||||
}
|
||||
|
||||
public string getClickHttpReferrer()
|
||||
{
|
||||
return getDeepLinkParameter("click_http_referrer");
|
||||
}
|
||||
|
||||
public string getMediaSource()
|
||||
{
|
||||
return getDeepLinkParameter("media_source");
|
||||
}
|
||||
|
||||
public string getCampaign()
|
||||
{
|
||||
return getDeepLinkParameter("campaign");
|
||||
}
|
||||
|
||||
public string getCampaignId()
|
||||
{
|
||||
return getDeepLinkParameter("campaign_id");
|
||||
}
|
||||
|
||||
public string getAfSub1()
|
||||
{
|
||||
return getDeepLinkParameter("af_sub1");
|
||||
}
|
||||
|
||||
public string getAfSub2()
|
||||
{
|
||||
return getDeepLinkParameter("af_sub2");
|
||||
}
|
||||
|
||||
public string getAfSub3()
|
||||
{
|
||||
return getDeepLinkParameter("af_sub3");
|
||||
}
|
||||
|
||||
public string getAfSub4()
|
||||
{
|
||||
return getDeepLinkParameter("af_sub4");
|
||||
}
|
||||
|
||||
public string getAfSub5()
|
||||
{
|
||||
return getDeepLinkParameter("af_sub5");
|
||||
}
|
||||
|
||||
public bool isDeferred()
|
||||
{
|
||||
if (deepLink != null && deepLink.ContainsKey("is_deferred"))
|
||||
{
|
||||
try
|
||||
{
|
||||
return (bool)deepLink["is_deferred"];
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
AppsFlyer.AFLog("DeepLinkEventsArgs.isDeferred", String.Format("{0} Exception caught.", e));
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public Dictionary<string, object> getDeepLinkDictionary()
|
||||
{
|
||||
return deepLink;
|
||||
}
|
||||
|
||||
public DeepLinkEventsArgs(string str)
|
||||
{
|
||||
try
|
||||
{
|
||||
Dictionary<string, object> dictionary = AppsFlyer.CallbackStringToDictionary(str);
|
||||
|
||||
string status = "";
|
||||
string error = "";
|
||||
|
||||
|
||||
if (dictionary.ContainsKey("status") && dictionary["status"] != null)
|
||||
{
|
||||
status = dictionary["status"].ToString();
|
||||
}
|
||||
|
||||
if (dictionary.ContainsKey("error") && dictionary["error"] != null)
|
||||
{
|
||||
error = dictionary["error"].ToString();
|
||||
}
|
||||
|
||||
if (dictionary.ContainsKey("deepLink") && dictionary["deepLink"] != null)
|
||||
{
|
||||
this.deepLink = AppsFlyer.CallbackStringToDictionary(dictionary["deepLink"].ToString());
|
||||
}
|
||||
if (dictionary.ContainsKey("is_deferred"))
|
||||
{
|
||||
this.deepLink["is_deferred"] = dictionary["is_deferred"];
|
||||
}
|
||||
|
||||
switch (status)
|
||||
{
|
||||
case "FOUND":
|
||||
this.status = DeepLinkStatus.FOUND;
|
||||
break;
|
||||
case "NOT_FOUND":
|
||||
this.status = DeepLinkStatus.NOT_FOUND;
|
||||
break;
|
||||
default:
|
||||
this.status = DeepLinkStatus.ERROR;
|
||||
break;
|
||||
}
|
||||
|
||||
switch (error)
|
||||
{
|
||||
case "TIMEOUT":
|
||||
this.error = DeepLinkError.TIMEOUT;
|
||||
break;
|
||||
case "NETWORK":
|
||||
this.error = DeepLinkError.NETWORK;
|
||||
break;
|
||||
case "HTTP_STATUS_CODE":
|
||||
this.error = DeepLinkError.HTTP_STATUS_CODE;
|
||||
break;
|
||||
default:
|
||||
this.error = DeepLinkError.UNEXPECTED;
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
AppsFlyer.AFLog("DeepLinkEventsArgs.parseDeepLink", String.Format("{0} Exception caught.", e));
|
||||
}
|
||||
}
|
||||
|
||||
private string getDeepLinkParameter(string name)
|
||||
{
|
||||
if (deepLink != null && deepLink.ContainsKey(name) && deepLink[name] != null)
|
||||
{
|
||||
return deepLink[name].ToString();
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public enum DeepLinkStatus {
|
||||
FOUND, NOT_FOUND, ERROR
|
||||
}
|
||||
|
||||
public enum DeepLinkError {
|
||||
TIMEOUT, NETWORK, HTTP_STATUS_CODE, UNEXPECTED
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a0fc241ad5a9b43a7b461a6147dbc74c
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,49 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1 &7315102894599890749
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 6207133488976360133}
|
||||
- component: {fileID: 4405976200006927252}
|
||||
m_Layer: 0
|
||||
m_Name: AppsFlyerObject
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!4 &6207133488976360133
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 7315102894599890749}
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!114 &4405976200006927252
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 7315102894599890749}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 2a2ec6ba1ee8b48749524f015ed572a6, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
devKey:
|
||||
appID:
|
||||
isDebug: 0
|
||||
getConversionData: 0
|
||||
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0bfe3b149145747cc92dc53bb4df4e9b
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,70 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using AppsFlyerSDK;
|
||||
|
||||
// This class is intended to be used the the AppsFlyerObject.prefab
|
||||
|
||||
public class AppsFlyerObjectScript : MonoBehaviour , IAppsFlyerConversionData
|
||||
{
|
||||
|
||||
// These fields are set from the editor so do not modify!
|
||||
//******************************//
|
||||
public string devKey;
|
||||
public string appID;
|
||||
public string UWPAppID;
|
||||
public string macOSAppID;
|
||||
public bool isDebug;
|
||||
public bool getConversionData;
|
||||
//******************************//
|
||||
|
||||
|
||||
void Start()
|
||||
{
|
||||
// These fields are set from the editor so do not modify!
|
||||
//******************************//
|
||||
AppsFlyer.setIsDebug(isDebug);
|
||||
#if UNITY_WSA_10_0 && !UNITY_EDITOR
|
||||
AppsFlyer.initSDK(devKey, UWPAppID, getConversionData ? this : null);
|
||||
#elif UNITY_STANDALONE_OSX && !UNITY_EDITOR
|
||||
AppsFlyer.initSDK(devKey, macOSAppID, getConversionData ? this : null);
|
||||
#else
|
||||
AppsFlyer.initSDK(devKey, appID, getConversionData ? this : null);
|
||||
#endif
|
||||
//******************************/
|
||||
|
||||
AppsFlyer.startSDK();
|
||||
}
|
||||
|
||||
|
||||
void Update()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
// Mark AppsFlyer CallBacks
|
||||
public void onConversionDataSuccess(string conversionData)
|
||||
{
|
||||
AppsFlyer.AFLog("didReceiveConversionData", conversionData);
|
||||
Dictionary<string, object> conversionDataDictionary = AppsFlyer.CallbackStringToDictionary(conversionData);
|
||||
// add deferred deeplink logic here
|
||||
}
|
||||
|
||||
public void onConversionDataFail(string error)
|
||||
{
|
||||
AppsFlyer.AFLog("didReceiveConversionDataWithError", error);
|
||||
}
|
||||
|
||||
public void onAppOpenAttribution(string attributionData)
|
||||
{
|
||||
AppsFlyer.AFLog("onAppOpenAttribution", attributionData);
|
||||
Dictionary<string, object> attributionDataDictionary = AppsFlyer.CallbackStringToDictionary(attributionData);
|
||||
// add direct deeplink logic here
|
||||
}
|
||||
|
||||
public void onAppOpenAttributionFailure(string error)
|
||||
{
|
||||
AppsFlyer.AFLog("onAppOpenAttributionFailure", error);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2a2ec6ba1ee8b48749524f015ed572a6
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
+1016
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b34371b3cc09641ebb007ffc4e9500f0
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9f84c02aa78da4ac9b444d98d97f7cc4
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "AppsFlyer.Editor",
|
||||
"references": [
|
||||
"AppsFlyer"
|
||||
],
|
||||
"includePlatforms": [
|
||||
"Editor"
|
||||
],
|
||||
"excludePlatforms": [],
|
||||
"allowUnsafeCode": false,
|
||||
"overrideReferences": false,
|
||||
"precompiledReferences": [],
|
||||
"autoReferenced": true,
|
||||
"defineConstraints": [],
|
||||
"versionDefines": [],
|
||||
"noEngineReferences": false
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d008146f00dea44d38752b4289e5f65b
|
||||
AssemblyDefinitionImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<dependencies>
|
||||
|
||||
<androidPackages>
|
||||
<androidPackage spec="com.appsflyer:af-android-sdk:6.15.0">
|
||||
</androidPackage>
|
||||
<androidPackage spec="com.appsflyer:unity-wrapper:6.15.3">
|
||||
</androidPackage>
|
||||
<androidPackage spec="com.android.installreferrer:installreferrer:2.1">
|
||||
</androidPackage>
|
||||
</androidPackages>
|
||||
|
||||
<iosPods>
|
||||
<iosPod name="AppsFlyerFramework" version="6.15.2" minTargetSdk="12.0">
|
||||
</iosPod>
|
||||
</iosPods>
|
||||
|
||||
</dependencies>
|
||||
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a03558dbbfeac45db9afe9e9c2df5a85
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,84 @@
|
||||
using UnityEditor;
|
||||
using UnityEngine;
|
||||
|
||||
|
||||
[CustomEditor(typeof(AppsFlyerObjectScript))]
|
||||
[CanEditMultipleObjects]
|
||||
public class AppsFlyerObjectEditor : Editor
|
||||
{
|
||||
|
||||
SerializedProperty devKey;
|
||||
SerializedProperty appID;
|
||||
SerializedProperty UWPAppID;
|
||||
SerializedProperty macOSAppID;
|
||||
SerializedProperty isDebug;
|
||||
SerializedProperty getConversionData;
|
||||
|
||||
|
||||
void OnEnable()
|
||||
{
|
||||
devKey = serializedObject.FindProperty("devKey");
|
||||
appID = serializedObject.FindProperty("appID");
|
||||
UWPAppID = serializedObject.FindProperty("UWPAppID");
|
||||
macOSAppID = serializedObject.FindProperty("macOSAppID");
|
||||
isDebug = serializedObject.FindProperty("isDebug");
|
||||
getConversionData = serializedObject.FindProperty("getConversionData");
|
||||
}
|
||||
|
||||
|
||||
|
||||
public override void OnInspectorGUI()
|
||||
{
|
||||
serializedObject.Update();
|
||||
|
||||
GUILayout.Box((Texture)AssetDatabase.LoadAssetAtPath(AssetDatabase.GUIDToAssetPath(AssetDatabase.FindAssets("appsflyer_logo")[0]), typeof(Texture)), new GUILayoutOption[] { GUILayout.Width(600) });
|
||||
|
||||
EditorGUILayout.Separator();
|
||||
EditorGUILayout.HelpBox("Set your devKey and appID to init the AppsFlyer SDK and start tracking. You must modify these fields and provide:\ndevKey - Your application devKey provided by AppsFlyer.\nappId - For iOS only. Your iTunes Application ID.\nUWP app id - For UWP only. Your application app id \nMac OS app id - For MacOS app only.", MessageType.Info);
|
||||
|
||||
EditorGUILayout.PropertyField(devKey);
|
||||
EditorGUILayout.PropertyField(appID);
|
||||
EditorGUILayout.PropertyField(UWPAppID);
|
||||
EditorGUILayout.PropertyField(macOSAppID);
|
||||
EditorGUILayout.Separator();
|
||||
EditorGUILayout.HelpBox("Enable get conversion data to allow your app to recive deeplinking callbacks", MessageType.None);
|
||||
EditorGUILayout.PropertyField(getConversionData);
|
||||
EditorGUILayout.Separator();
|
||||
EditorGUILayout.HelpBox("Debugging should be restricted to development phase only.\n Do not distribute the app to app stores with debugging enabled", MessageType.Warning);
|
||||
EditorGUILayout.PropertyField(isDebug);
|
||||
EditorGUILayout.Separator();
|
||||
|
||||
EditorGUILayout.HelpBox("For more information on setting up AppsFlyer check out our relevant docs.", MessageType.None);
|
||||
|
||||
|
||||
if (GUILayout.Button("AppsFlyer Unity Docs", new GUILayoutOption[] { GUILayout.Width(200) }))
|
||||
{
|
||||
Application.OpenURL("https://support.appsflyer.com/hc/en-us/articles/213766183-Unity-SDK-integration-for-developers");
|
||||
}
|
||||
|
||||
if (GUILayout.Button("AppsFlyer Android Docs", new GUILayoutOption[] { GUILayout.Width(200) }))
|
||||
{
|
||||
Application.OpenURL("https://support.appsflyer.com/hc/en-us/articles/207032126-Android-SDK-integration-for-developers");
|
||||
}
|
||||
|
||||
if (GUILayout.Button("AppsFlyer iOS Docs", new GUILayoutOption[] { GUILayout.Width(200) }))
|
||||
{
|
||||
Application.OpenURL("https://support.appsflyer.com/hc/en-us/articles/207032066-AppsFlyer-SDK-Integration-iOS");
|
||||
}
|
||||
|
||||
if (GUILayout.Button("AppsFlyer Deeplinking Docs", new GUILayoutOption[] { GUILayout.Width(200) }))
|
||||
{
|
||||
Application.OpenURL("https://support.appsflyer.com/hc/en-us/articles/208874366-OneLink-deep-linking-guide#Setups");
|
||||
}
|
||||
|
||||
if (GUILayout.Button("AppsFlyer Windows Docs", new GUILayoutOption[] { GUILayout.Width(200) }))
|
||||
{
|
||||
Application.OpenURL("https://support.appsflyer.com/hc/en-us/articles/207032026-Windows-and-Xbox-SDK-integration-for-developers");
|
||||
}
|
||||
|
||||
|
||||
serializedObject.ApplyModifiedProperties();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d248a134cf494486fb1d6a2e95a05d87
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 9.2 KiB |
@@ -0,0 +1,92 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bc7fa5a6b64b944a4b2900fd877acb8b
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 11
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: -1
|
||||
aniso: -1
|
||||
mipBias: -100
|
||||
wrapU: -1
|
||||
wrapV: -1
|
||||
wrapW: -1
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 0
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
applyGammaDecoding: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,31 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace AppsFlyerSDK
|
||||
{
|
||||
|
||||
public interface IAppsFlyerAndroidBridge : IAppsFlyerNativeBridge
|
||||
{
|
||||
void updateServerUninstallToken(string token);
|
||||
void setImeiData(string imei);
|
||||
void setAndroidIdData(string androidId);
|
||||
void waitForCustomerUserId(bool wait);
|
||||
void setCustomerIdAndStartSDK(string id);
|
||||
string getOutOfStore();
|
||||
void setOutOfStore(string sourceName);
|
||||
void setCollectAndroidID(bool isCollect);
|
||||
void setCollectIMEI(bool isCollect);
|
||||
void setIsUpdate(bool isUpdate);
|
||||
void setPreinstallAttribution(string mediaSource, string campaign, string siteId);
|
||||
bool isPreInstalledApp();
|
||||
string getAttributionId();
|
||||
void handlePushNotifications();
|
||||
void validateAndSendInAppPurchase(string publicKey, string signature, string purchaseData, string price, string currency, Dictionary<string, string> additionalParameters, MonoBehaviour gameObject);
|
||||
void validateAndSendInAppPurchase(AFPurchaseDetailsAndroid details, Dictionary<string, string> additionalParameters, MonoBehaviour gameObject);
|
||||
void setCollectOaid(bool isCollect);
|
||||
void setDisableAdvertisingIdentifiers(bool disable);
|
||||
void setDisableNetworkData(bool disable);
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: cdf9d1bc41a8244b3bc2d249fb6cd7aa
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,31 @@
|
||||
namespace AppsFlyerSDK
|
||||
{
|
||||
public interface IAppsFlyerConversionData
|
||||
{
|
||||
/// <summary>
|
||||
/// `conversionData` contains information about install. Organic/non-organic, etc.
|
||||
/// <see>https://support.appsflyer.com/hc/en-us/articles/360000726098-Conversion-Data-Scenarios#Introduction</see>
|
||||
/// </summary>
|
||||
/// <param name="conversionData">JSON string of the returned conversion data.</param>
|
||||
void onConversionDataSuccess(string conversionData);
|
||||
|
||||
/// <summary>
|
||||
/// Any errors that occurred during the conversion request.
|
||||
/// </summary>
|
||||
/// <param name="error">A string describing the error.</param>
|
||||
void onConversionDataFail(string error);
|
||||
|
||||
/// <summary>
|
||||
/// `attributionData` contains information about OneLink, deeplink.
|
||||
/// <see>https://support.appsflyer.com/hc/en-us/articles/208874366-OneLink-Deep-Linking-Guide#Intro</see>
|
||||
/// </summary>
|
||||
/// <param name="attributionData">JSON string of the returned deeplink data.</param>
|
||||
void onAppOpenAttribution(string attributionData);
|
||||
|
||||
/// <summary>
|
||||
/// Any errors that occurred during the attribution request.
|
||||
/// </summary>
|
||||
/// <param name="error">A string describing the error.</param>
|
||||
void onAppOpenAttributionFailure(string error);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d2f1d4dadb7cb44628f25f1ffd8fc104
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,26 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
|
||||
namespace AppsFlyerSDK
|
||||
{
|
||||
|
||||
public interface IAppsFlyerIOSBridge : IAppsFlyerNativeBridge
|
||||
{
|
||||
void setDisableCollectAppleAdSupport(bool disable);
|
||||
void setShouldCollectDeviceName(bool shouldCollectDeviceName);
|
||||
void setDisableCollectIAd(bool disableCollectIAd);
|
||||
void setUseReceiptValidationSandbox(bool useReceiptValidationSandbox);
|
||||
void setUseUninstallSandbox(bool useUninstallSandbox);
|
||||
void validateAndSendInAppPurchase(string productIdentifier, string price, string currency, string transactionId, Dictionary<string, string> additionalParameters, MonoBehaviour gameObject);
|
||||
void validateAndSendInAppPurchase(AFSDKPurchaseDetailsIOS details, Dictionary<string, string> extraEventValues, MonoBehaviour gameObject);
|
||||
void registerUninstall(byte[] deviceToken);
|
||||
void handleOpenUrl(string url, string sourceApplication, string annotation);
|
||||
void waitForATTUserAuthorizationWithTimeoutInterval(int timeoutInterval);
|
||||
void setCurrentDeviceLanguage(string language);
|
||||
void disableSKAdNetwork(bool isDisabled);
|
||||
void disableIDFVCollection(bool isDisabled);
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6847fb337898040288c165e3667101a3
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,76 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace AppsFlyerSDK
|
||||
{
|
||||
|
||||
public interface IAppsFlyerNativeBridge
|
||||
{
|
||||
bool isInit { get; set; }
|
||||
|
||||
void startSDK(bool onRequestResponse, string CallBackObjectName);
|
||||
|
||||
void sendEvent(string eventName, Dictionary<string, string> eventValues, bool onInAppResponse, string CallBackObjectName);
|
||||
|
||||
void stopSDK(bool isSDKStopped);
|
||||
|
||||
bool isSDKStopped();
|
||||
|
||||
string getSdkVersion();
|
||||
|
||||
void setCustomerUserId(string id);
|
||||
|
||||
void setAppInviteOneLinkID(string oneLinkId);
|
||||
|
||||
void setAdditionalData(Dictionary<string, string> customData);
|
||||
|
||||
void setDeepLinkTimeout(long deepLinkTimeout);
|
||||
|
||||
void setResolveDeepLinkURLs(params string[] urls);
|
||||
|
||||
void setOneLinkCustomDomain(params string[] domains);
|
||||
|
||||
void setCurrencyCode(string currencyCode);
|
||||
|
||||
void recordLocation(double latitude, double longitude);
|
||||
|
||||
void anonymizeUser(bool shouldAnonymizeUser);
|
||||
|
||||
string getAppsFlyerId();
|
||||
|
||||
void enableTCFDataCollection(bool shouldCollectTcfData);
|
||||
|
||||
void setConsentData(AppsFlyerConsent appsFlyerConsent);
|
||||
|
||||
void logAdRevenue(AFAdRevenueData adRevenueData, Dictionary<string, string> additionalParameters);
|
||||
|
||||
void setMinTimeBetweenSessions(int seconds);
|
||||
|
||||
void setHost(string hostPrefixName, string hostName);
|
||||
|
||||
void setPhoneNumber(string phoneNumber);
|
||||
|
||||
void setSharingFilterForAllPartners();
|
||||
|
||||
void setSharingFilter(params string[] partners);
|
||||
|
||||
void getConversionData(string objectName);
|
||||
|
||||
void attributeAndOpenStore(string appID, string campaign, Dictionary<string, string> userParams, MonoBehaviour gameObject);
|
||||
|
||||
void recordCrossPromoteImpression(string appID, string campaign, Dictionary<string, string> parameters);
|
||||
|
||||
void generateUserInviteLink(Dictionary<string, string> parameters, MonoBehaviour gameObject);
|
||||
|
||||
void addPushNotificationDeepLinkPath(params string[] paths);
|
||||
|
||||
void setUserEmails(EmailCryptType cryptType, params string[] userEmails);
|
||||
|
||||
void subscribeForDeepLink(string objectName);
|
||||
|
||||
void setIsDebug(bool shouldEnable);
|
||||
|
||||
void setPartnerData(string partnerId, Dictionary<string, string> partnerInfo);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 409b8302434664a3785ce55d075e7f58
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,26 @@
|
||||
namespace AppsFlyerSDK
|
||||
{
|
||||
public interface IAppsFlyerUserInvite
|
||||
{
|
||||
/// <summary>
|
||||
/// The success callback for generating OneLink URLs.
|
||||
/// </summary>
|
||||
/// <param name="link">A string of the newly created url.</param>
|
||||
void onInviteLinkGenerated(string link);
|
||||
|
||||
/// <summary>
|
||||
/// The error callback for generating OneLink URLs
|
||||
/// </summary>
|
||||
/// <param name="error">A string describing the error.</param>
|
||||
void onInviteLinkGeneratedFailure(string error);
|
||||
|
||||
/// <summary>
|
||||
/// (ios only) iOS allows you to utilize the StoreKit component to open
|
||||
/// the App Store while remaining in the context of your app.
|
||||
/// More details at <see>https://support.appsflyer.com/hc/en-us/articles/115004481946-Cross-Promotion-Tracking#tracking-cross-promotion-impressions</see>
|
||||
/// </summary>
|
||||
/// <param name="link">openStore callback Contains promoted `clickURL`</param>
|
||||
void onOpenStoreLinkGenerated(string link);
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5a4cdfa023cb8497b94bb39720052fef
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,19 @@
|
||||
namespace AppsFlyerSDK
|
||||
{
|
||||
public interface IAppsFlyerValidateAndLog
|
||||
{
|
||||
/// <summary>
|
||||
/// The success callback for validateAndSendInAppPurchase API.
|
||||
/// For Android : the callback will return JSON string.
|
||||
/// For iOS : the callback will return a JSON string from apples verifyReceipt API.
|
||||
/// </summary>
|
||||
/// <param name="result"></param>
|
||||
void onValidateAndLogComplete(string result);
|
||||
|
||||
/// <summary>
|
||||
/// The error callback for validateAndSendInAppPurchase API.
|
||||
/// </summary>
|
||||
/// <param name="error">A string describing the error.</param>
|
||||
void onValidateAndLogFailure(string error);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1a5adb7eab3284dd39a76ec56c06457c
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,19 @@
|
||||
namespace AppsFlyerSDK
|
||||
{
|
||||
public interface IAppsFlyerValidateReceipt
|
||||
{
|
||||
/// <summary>
|
||||
/// The success callback for validateAndSendInAppPurchase API.
|
||||
/// For Android : the callback will return "Validate success".
|
||||
/// For iOS : the callback will return a JSON string from apples verifyReceipt API.
|
||||
/// </summary>
|
||||
/// <param name="result"></param>
|
||||
void didFinishValidateReceipt(string result);
|
||||
|
||||
/// <summary>
|
||||
/// The error callback for validateAndSendInAppPurchase API.
|
||||
/// </summary>
|
||||
/// <param name="error">A string describing the error.</param>
|
||||
void didFinishValidateReceiptWithError(string error);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6385b1d184efa400a98515735e1f17bc
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 96a328019e42349aabc478b546b8605e
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,33 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 682114f7790724ab3b9410e89bbc076c
|
||||
folderAsset: yes
|
||||
PluginImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
defineConstraints: []
|
||||
isPreloaded: 0
|
||||
isOverridable: 0
|
||||
isExplicitlyReferenced: 0
|
||||
validateReferences: 1
|
||||
platformData:
|
||||
- first:
|
||||
Any:
|
||||
second:
|
||||
enabled: 0
|
||||
settings: {}
|
||||
- first:
|
||||
Editor: Editor
|
||||
second:
|
||||
enabled: 1
|
||||
settings:
|
||||
DefaultValueInitialized: true
|
||||
- first:
|
||||
Standalone: OSXUniversal
|
||||
second:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
+48
@@ -0,0 +1,48 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildMachineOSBuild</key>
|
||||
<string>20G417</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>en</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AppsFlyerBundle</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.appsflyer.support.two.AppsFlyerBundle</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>AppsFlyerBundle</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>BNDL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1</string>
|
||||
<key>DTCompiler</key>
|
||||
<string>com.apple.compilers.llvm.clang.1_0</string>
|
||||
<key>DTPlatformBuild</key>
|
||||
<string>13A1030d</string>
|
||||
<key>DTPlatformName</key>
|
||||
<string>macosx</string>
|
||||
<key>DTPlatformVersion</key>
|
||||
<string>12.0</string>
|
||||
<key>DTSDKBuild</key>
|
||||
<string>21A344</string>
|
||||
<key>DTSDKName</key>
|
||||
<string>macosx12.0</string>
|
||||
<key>DTXcode</key>
|
||||
<string>1310</string>
|
||||
<key>DTXcodeBuild</key>
|
||||
<string>13A1030d</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<string>11.6</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string></string>
|
||||
</dict>
|
||||
</plist>
|
||||
Vendored
BIN
Binary file not shown.
+115
@@ -0,0 +1,115 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict/>
|
||||
<key>files2</key>
|
||||
<dict/>
|
||||
<key>rules</key>
|
||||
<dict>
|
||||
<key>^Resources/</key>
|
||||
<true/>
|
||||
<key>^Resources/.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>1000</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>1100</real>
|
||||
</dict>
|
||||
<key>^Resources/Base\.lproj/</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>1010</real>
|
||||
</dict>
|
||||
<key>^version.plist$</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>rules2</key>
|
||||
<dict>
|
||||
<key>.*\.dSYM($|/)</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>11</real>
|
||||
</dict>
|
||||
<key>^(.*/)?\.DS_Store$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>2000</real>
|
||||
</dict>
|
||||
<key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key>
|
||||
<dict>
|
||||
<key>nested</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^.*</key>
|
||||
<true/>
|
||||
<key>^Info\.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
<key>^PkgInfo$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
<key>^Resources/</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>1000</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>1100</real>
|
||||
</dict>
|
||||
<key>^Resources/Base\.lproj/</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>1010</real>
|
||||
</dict>
|
||||
<key>^[^/]+$</key>
|
||||
<dict>
|
||||
<key>nested</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^embedded\.provisionprofile$</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
<key>^version\.plist$</key>
|
||||
<dict>
|
||||
<key>weight</key>
|
||||
<real>20</real>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 66297743248ab4e47abdc371a59f1111
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d8325c12a80ff4323b82e2833a8fc287
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,23 @@
|
||||
//
|
||||
// AFUnityUtils.h
|
||||
//
|
||||
// Created by Andrii H. and Dmitry O. on 16 Oct 2023
|
||||
//
|
||||
|
||||
#if __has_include(<AppsFlyerLib/AppsFlyerLib.h>)
|
||||
#import <AppsFlyerLib/AppsFlyerLib.h>
|
||||
#else
|
||||
#import "AppsFlyerLib.h"
|
||||
#endif
|
||||
|
||||
static NSString* stringFromChar(const char *str);
|
||||
static NSDictionary* dictionaryFromJson(const char *jsonString);
|
||||
static const char* stringFromdictionary(NSDictionary* dictionary);
|
||||
static NSArray<NSString*> *NSArrayFromCArray(int length, const char **arr);
|
||||
static char* getCString(const char* string);
|
||||
static AppsFlyerLinkGenerator* generatorFromDictionary(NSDictionary* dictionary, AppsFlyerLinkGenerator* generator);
|
||||
static EmailCryptType emailCryptTypeFromInt(int emailCryptTypeInt);
|
||||
static AppsFlyerAdRevenueMediationNetworkType mediationNetworkTypeFromInt(int mediationNetwork);
|
||||
static NSString* stringFromDeepLinkResultStatus(AFSDKDeepLinkResultStatus deepLinkResult);
|
||||
static NSString* stringFromDeepLinkResultError(AppsFlyerDeepLinkResult *result);
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4b0609ff467554f2088aee1c52bf54a2
|
||||
PluginImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
defineConstraints: []
|
||||
isPreloaded: 0
|
||||
isOverridable: 0
|
||||
isExplicitlyReferenced: 0
|
||||
validateReferences: 1
|
||||
platformData:
|
||||
- first:
|
||||
Any:
|
||||
second:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
- first:
|
||||
Editor: Editor
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
DefaultValueInitialized: true
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,199 @@
|
||||
//
|
||||
// AFUnityUtils.mm
|
||||
// Unity-iPhone
|
||||
//
|
||||
// Created by Jonathan Wesfield on 24/07/2019.
|
||||
//
|
||||
|
||||
#import "AFUnityUtils.h"
|
||||
|
||||
static NSString* stringFromChar(const char *str) {
|
||||
return str ? [NSString stringWithUTF8String:str] : nil;
|
||||
}
|
||||
|
||||
static NSDictionary* dictionaryFromJson(const char *jsonString) {
|
||||
if(jsonString){
|
||||
NSData *jsonData = [[NSData alloc] initWithBytes:jsonString length:strlen(jsonString)];
|
||||
NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:jsonData options:kNilOptions error:nil];
|
||||
return dictionary;
|
||||
}
|
||||
|
||||
return nil;
|
||||
}
|
||||
|
||||
static const char* stringFromdictionary(NSDictionary* dictionary) {
|
||||
if(dictionary){
|
||||
NSError * err;
|
||||
NSData * jsonData = [NSJSONSerialization dataWithJSONObject:dictionary options:0 error:&err];
|
||||
NSString * myString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
|
||||
return [myString UTF8String];
|
||||
}
|
||||
|
||||
return nil;
|
||||
}
|
||||
|
||||
static NSDictionary* dictionaryFromNSError(NSError* error) {
|
||||
if(error){
|
||||
NSInteger code = [error code];
|
||||
NSString *localizedDescription = [error localizedDescription];
|
||||
|
||||
NSDictionary *errorDictionary = @{
|
||||
@"code" : @(code) ?: @(-1),
|
||||
@"localizedDescription" : localizedDescription,
|
||||
};
|
||||
return errorDictionary;
|
||||
}
|
||||
|
||||
return nil;
|
||||
}
|
||||
|
||||
|
||||
static NSArray<NSString*> *NSArrayFromCArray(int length, const char **arr) {
|
||||
NSMutableArray<NSString *> *res = [[NSMutableArray alloc] init];
|
||||
for(int i = 0; i < length; i++) {
|
||||
if (arr[i]) {
|
||||
[res addObject:[NSString stringWithUTF8String:arr[i]]];
|
||||
}
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
static char* getCString(const char* string){
|
||||
if (string == NULL){
|
||||
return NULL;
|
||||
}
|
||||
|
||||
char* res = (char*)malloc(strlen(string) + 1);
|
||||
strcpy(res, string);
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
static AppsFlyerLinkGenerator* generatorFromDictionary(NSDictionary* dictionary, AppsFlyerLinkGenerator* generator) {
|
||||
|
||||
NSArray* generatorKeys = @[@"channel", @"customerID", @"campaign", @"referrerName", @"referrerImageUrl", @"deeplinkPath", @"baseDeeplink", @"brandDomain"];
|
||||
|
||||
NSMutableDictionary* mutableDictionary = [dictionary mutableCopy];
|
||||
|
||||
[generator setChannel:[dictionary objectForKey: @"channel"]];
|
||||
[generator setReferrerCustomerId:[dictionary objectForKey: @"customerID"]];
|
||||
[generator setCampaign:[dictionary objectForKey: @"campaign"]];
|
||||
[generator setReferrerName:[dictionary objectForKey: @"referrerName"]];
|
||||
[generator setReferrerImageURL:[dictionary objectForKey: @"referrerImageUrl"]];
|
||||
[generator setDeeplinkPath:[dictionary objectForKey: @"deeplinkPath"]];
|
||||
[generator setBaseDeeplink:[dictionary objectForKey: @"baseDeeplink"]];
|
||||
[generator setBrandDomain:[dictionary objectForKey: @"brandDomain"]];
|
||||
|
||||
|
||||
[mutableDictionary removeObjectsForKeys:generatorKeys];
|
||||
|
||||
[generator addParameters:mutableDictionary];
|
||||
|
||||
return generator;
|
||||
}
|
||||
|
||||
static EmailCryptType emailCryptTypeFromInt(int emailCryptTypeInt){
|
||||
|
||||
EmailCryptType emailCryptType;
|
||||
switch (emailCryptTypeInt){
|
||||
case 1:
|
||||
emailCryptType = EmailCryptTypeSHA256;
|
||||
break;
|
||||
default:
|
||||
emailCryptType = EmailCryptTypeNone;
|
||||
break;
|
||||
}
|
||||
|
||||
return emailCryptType;
|
||||
}
|
||||
|
||||
static AppsFlyerAdRevenueMediationNetworkType mediationNetworkTypeFromInt(int mediationNetworkInt){
|
||||
|
||||
AppsFlyerAdRevenueMediationNetworkType mediationNetworkType;
|
||||
switch (mediationNetworkInt){
|
||||
case 1:
|
||||
mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob;
|
||||
break;
|
||||
case 2:
|
||||
mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeIronSource;
|
||||
break;
|
||||
case 3:
|
||||
mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeApplovinMax;
|
||||
break;
|
||||
case 4:
|
||||
mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeFyber;
|
||||
break;
|
||||
case 5:
|
||||
mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeAppodeal;
|
||||
break;
|
||||
case 6:
|
||||
mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeAdmost;
|
||||
break;
|
||||
case 7:
|
||||
mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeTopon;
|
||||
break;
|
||||
case 8:
|
||||
mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeTradplus;
|
||||
break;
|
||||
case 9:
|
||||
mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeYandex;
|
||||
break;
|
||||
case 10:
|
||||
mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeChartBoost;
|
||||
break;
|
||||
case 11:
|
||||
mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeUnity;
|
||||
break;
|
||||
case 12:
|
||||
mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeToponPte;
|
||||
break;
|
||||
case 13:
|
||||
mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeCustom;
|
||||
break;
|
||||
case 14:
|
||||
mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeDirectMonetization;
|
||||
break;
|
||||
default:
|
||||
mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeCustom;
|
||||
break;
|
||||
}
|
||||
|
||||
return mediationNetworkType;
|
||||
}
|
||||
|
||||
static NSString* stringFromDeepLinkResultStatus(AFSDKDeepLinkResultStatus deepLinkResult){
|
||||
NSString* result;
|
||||
switch (deepLinkResult){
|
||||
case AFSDKDeepLinkResultStatusFound:
|
||||
result = @"FOUND";
|
||||
break;
|
||||
case AFSDKDeepLinkResultStatusFailure:
|
||||
result = @"ERROR";
|
||||
break;
|
||||
case AFSDKDeepLinkResultStatusNotFound:
|
||||
result = @"NOT_FOUND";
|
||||
break;
|
||||
default:
|
||||
result = @"ERROR";
|
||||
break;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
static NSString* stringFromDeepLinkResultError(AppsFlyerDeepLinkResult *result){
|
||||
NSString* res;
|
||||
|
||||
if (result && result.error){
|
||||
if ([[result.error userInfo][NSUnderlyingErrorKey] code] == -1001) {
|
||||
res = @"TIMEOUT";
|
||||
} else if ([[result.error userInfo][NSUnderlyingErrorKey] code] == -1009) {
|
||||
res = @"NETWORK";
|
||||
}
|
||||
}
|
||||
|
||||
res = @"UNKNOWN";
|
||||
|
||||
return res;
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 18a03931864e84d86bedcc99c440e060
|
||||
PluginImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
defineConstraints: []
|
||||
isPreloaded: 0
|
||||
isOverridable: 0
|
||||
isExplicitlyReferenced: 0
|
||||
validateReferences: 1
|
||||
platformData:
|
||||
- first:
|
||||
Any:
|
||||
second:
|
||||
enabled: 0
|
||||
settings: {}
|
||||
- first:
|
||||
Editor: Editor
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
DefaultValueInitialized: true
|
||||
- first:
|
||||
iPhone: iOS
|
||||
second:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
- first:
|
||||
tvOS: tvOS
|
||||
second:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
+164
@@ -0,0 +1,164 @@
|
||||
//
|
||||
// AppsFlyer+AppController.m
|
||||
// Unity-iPhone
|
||||
//
|
||||
// Created by Jonathan Wesfield on 24/07/2019.
|
||||
//
|
||||
|
||||
#import <objc/runtime.h>
|
||||
#import "UnityAppController.h"
|
||||
#import "AppsFlyeriOSWrapper.h"
|
||||
#if __has_include(<AppsFlyerLib/AppsFlyerLib.h>)
|
||||
#import <AppsFlyerLib/AppsFlyerLib.h>
|
||||
#else
|
||||
#import "AppsFlyerLib.h"
|
||||
#endif
|
||||
|
||||
|
||||
@implementation UnityAppController (AppsFlyerSwizzledAppController)
|
||||
|
||||
static BOOL didEnteredBackGround __unused;
|
||||
static IMP __original_applicationDidBecomeActive_Imp __unused;
|
||||
static IMP __original_applicationDidEnterBackground_Imp __unused;
|
||||
static IMP __original_didReceiveRemoteNotification_Imp __unused;
|
||||
static IMP __original_continueUserActivity_Imp __unused;
|
||||
static IMP __original_openUrl_Imp __unused;
|
||||
|
||||
|
||||
+ (void)load {
|
||||
static dispatch_once_t onceToken;
|
||||
dispatch_once(&onceToken, ^{
|
||||
|
||||
#if !AFSDK_SHOULD_SWIZZLE
|
||||
|
||||
id swizzleFlag = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"AppsFlyerShouldSwizzle"];
|
||||
BOOL shouldSwizzle = swizzleFlag ? [swizzleFlag boolValue] : NO;
|
||||
|
||||
if(shouldSwizzle){
|
||||
|
||||
Method method1 = class_getInstanceMethod([self class], @selector(applicationDidBecomeActive:));
|
||||
__original_applicationDidBecomeActive_Imp = method_setImplementation(method1, (IMP)__swizzled_applicationDidBecomeActive);
|
||||
|
||||
Method method2 = class_getInstanceMethod([self class], @selector(applicationDidEnterBackground:));
|
||||
__original_applicationDidEnterBackground_Imp = method_setImplementation(method2, (IMP)__swizzled_applicationDidEnterBackground);
|
||||
|
||||
|
||||
Method method3 = class_getInstanceMethod([self class], @selector(didReceiveRemoteNotification:));
|
||||
__original_didReceiveRemoteNotification_Imp = method_setImplementation(method3, (IMP)__swizzled_didReceiveRemoteNotification);
|
||||
|
||||
|
||||
Method method4 = class_getInstanceMethod([self class], @selector(application:openURL:options:));
|
||||
__original_openUrl_Imp = method_setImplementation(method4, (IMP)__swizzled_openURL);
|
||||
|
||||
if (_AppsFlyerdelegate == nil) {
|
||||
_AppsFlyerdelegate = [[AppsFlyeriOSWarpper alloc] init];
|
||||
}
|
||||
|
||||
[self swizzleContinueUserActivity:[self class]];
|
||||
}
|
||||
#elif AFSDK_SHOULD_SWIZZLE
|
||||
Method method1 = class_getInstanceMethod([self class], @selector(applicationDidBecomeActive:));
|
||||
__original_applicationDidBecomeActive_Imp = method_setImplementation(method1, (IMP)__swizzled_applicationDidBecomeActive);
|
||||
|
||||
Method method2 = class_getInstanceMethod([self class], @selector(applicationDidEnterBackground:));
|
||||
__original_applicationDidEnterBackground_Imp = method_setImplementation(method2, (IMP)__swizzled_applicationDidEnterBackground);
|
||||
|
||||
|
||||
Method method3 = class_getInstanceMethod([self class], @selector(didReceiveRemoteNotification:));
|
||||
__original_didReceiveRemoteNotification_Imp = method_setImplementation(method3, (IMP)__swizzled_didReceiveRemoteNotification);
|
||||
|
||||
|
||||
Method method4 = class_getInstanceMethod([self class], @selector(application:openURL:options:));
|
||||
__original_openUrl_Imp = method_setImplementation(method4, (IMP)__swizzled_openURL);
|
||||
|
||||
if (_AppsFlyerdelegate == nil) {
|
||||
_AppsFlyerdelegate = [[AppsFlyeriOSWarpper alloc] init];
|
||||
}
|
||||
|
||||
[self swizzleContinueUserActivity:[self class]];
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
+(void)swizzleContinueUserActivity:(Class)class {
|
||||
|
||||
SEL originalSelector = @selector(application:continueUserActivity:restorationHandler:);
|
||||
|
||||
Method defaultMethod = class_getInstanceMethod(class, originalSelector);
|
||||
Method swizzledMethod = class_getInstanceMethod(class, @selector(__swizzled_continueUserActivity));
|
||||
|
||||
BOOL isMethodExists = !class_addMethod(class, originalSelector, method_getImplementation(swizzledMethod), method_getTypeEncoding(swizzledMethod));
|
||||
|
||||
if (isMethodExists) {
|
||||
__original_continueUserActivity_Imp = method_setImplementation(defaultMethod, (IMP)__swizzled_continueUserActivity);
|
||||
} else {
|
||||
class_replaceMethod(class, originalSelector, (IMP)__swizzled_continueUserActivity, method_getTypeEncoding(swizzledMethod));
|
||||
}
|
||||
}
|
||||
|
||||
BOOL __swizzled_continueUserActivity(id self, SEL _cmd, UIApplication* application, NSUserActivity* userActivity, void (^restorationHandler)(NSArray*)) {
|
||||
NSLog(@"swizzled continueUserActivity");
|
||||
[[AppsFlyerAttribution shared] continueUserActivity:userActivity restorationHandler:restorationHandler];
|
||||
|
||||
if(__original_continueUserActivity_Imp){
|
||||
return ((BOOL(*)(id, SEL, UIApplication*, NSUserActivity*, void (^)(NSArray*)))__original_continueUserActivity_Imp)(self, _cmd, application, userActivity, NULL);
|
||||
}
|
||||
|
||||
return YES;
|
||||
}
|
||||
|
||||
|
||||
|
||||
void __swizzled_applicationDidBecomeActive(id self, SEL _cmd, UIApplication* launchOptions) {
|
||||
NSLog(@"swizzled applicationDidBecomeActive");
|
||||
[[AppsFlyerLib shared] setDelegate:_AppsFlyerdelegate];
|
||||
|
||||
if(didEnteredBackGround && AppsFlyeriOSWarpper.didCallStart == YES){
|
||||
[[AppsFlyerLib shared] start];
|
||||
}
|
||||
|
||||
if(__original_applicationDidBecomeActive_Imp){
|
||||
((void(*)(id,SEL, UIApplication*))__original_applicationDidBecomeActive_Imp)(self, _cmd, launchOptions);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void __swizzled_applicationDidEnterBackground(id self, SEL _cmd, UIApplication* application) {
|
||||
NSLog(@"swizzled applicationDidEnterBackground");
|
||||
didEnteredBackGround = YES;
|
||||
if(__original_applicationDidEnterBackground_Imp){
|
||||
((void(*)(id,SEL, UIApplication*))__original_applicationDidEnterBackground_Imp)(self, _cmd, application);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
BOOL __swizzled_didReceiveRemoteNotification(id self, SEL _cmd, UIApplication* application, NSDictionary* userInfo,void (^UIBackgroundFetchResult)(void) ) {
|
||||
NSLog(@"swizzled didReceiveRemoteNotification");
|
||||
|
||||
[[AppsFlyerLib shared] handlePushNotification:userInfo];
|
||||
|
||||
if(__original_didReceiveRemoteNotification_Imp){
|
||||
return ((BOOL(*)(id, SEL, UIApplication*, NSDictionary*, int(UIBackgroundFetchResult)))__original_didReceiveRemoteNotification_Imp)(self, _cmd, application, userInfo, nil);
|
||||
}
|
||||
return YES;
|
||||
}
|
||||
|
||||
|
||||
|
||||
BOOL __swizzled_openURL(id self, SEL _cmd, UIApplication* application, NSURL* url, NSDictionary * options) {
|
||||
NSLog(@"swizzled openURL");
|
||||
[[AppsFlyerAttribution shared] handleOpenUrl:url options:options];
|
||||
if(__original_openUrl_Imp){
|
||||
return ((BOOL(*)(id, SEL, UIApplication*, NSURL*, NSDictionary*))__original_openUrl_Imp)(self, _cmd, application, url, options);
|
||||
}
|
||||
return NO;
|
||||
}
|
||||
|
||||
|
||||
@end
|
||||
|
||||
|
||||
|
||||
+37
@@ -0,0 +1,37 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6ae9e1f7daef2427588fab2fbf8d35d5
|
||||
PluginImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
defineConstraints: []
|
||||
isPreloaded: 0
|
||||
isOverridable: 0
|
||||
isExplicitlyReferenced: 0
|
||||
validateReferences: 1
|
||||
platformData:
|
||||
- first:
|
||||
Any:
|
||||
second:
|
||||
enabled: 0
|
||||
settings: {}
|
||||
- first:
|
||||
Editor: Editor
|
||||
second:
|
||||
enabled: 0
|
||||
settings:
|
||||
DefaultValueInitialized: true
|
||||
- first:
|
||||
iPhone: iOS
|
||||
second:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
- first:
|
||||
tvOS: tvOS
|
||||
second:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user