Files
tysdk-intergration/sdk-intergration/Packages/tysdk/Runtime/TYSdkFacade_GA.cs

39 lines
1001 B
C#

using UnityEngine;
namespace tysdk
{
public partial class TYSdkFacade
{
/*================================================
_____ _ _____ _
| ____|_ _____ _ __ | |_ |_ _| __ __ _ ___| | __
| _| \ \ / / _ \ '_ \| __| | || '__/ _` |/ __| |/ /
| |___ \ V / __/ | | | |_ | || | | (_| | (__| <
|_____| \_/ \___|_| |_|\__| |_||_| \__,_|\___|_|\_\
=================================================*/
public void EventTrack(int type, string name, string content)
{
#if UNITY_IOS || UNITY_ANDROID
UnityBridgeFunc.GAReportParams(type, name, content);
#endif
}
}
public enum GATrackType
{
GA_TRACK = 1,
GA_CION = 2,
GA_PAY = 3,
GA_GAME = 4,
GA_LOGIN = 5,
GA_PUSH = 6,
GA_ADBOX = 7,
GA_PREFORMANCE = 8,
GA_SDK = 9,
GA_ABTest = 10,
}
}