com.taptap.sdk.core 4.3.4 → 4.3.10-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Mobile/Editor/NativeDependencies.xml +2 -2
- package/Mobile/Runtime/IOSNativeWrapper.cs +3 -3
- package/Mobile/Runtime/TapCoreMobile.cs +5 -5
- package/Runtime/Internal/Init/IInitTask.cs +2 -2
- package/Runtime/Internal/Log/TapLog.cs +117 -0
- package/Runtime/Internal/Log/TapLog.cs.meta +11 -0
- package/Runtime/Internal/Log.meta +8 -0
- package/Runtime/Internal/Platform/ITapCorePlatform.cs +2 -2
- package/Runtime/Public/TapTapEvent.cs +1 -1
- package/Runtime/Public/TapTapSDK.cs +10 -7
- package/Runtime/Public/{TapTapSDKCoreOptions.cs → TapTapSdkOptions.cs} +2 -2
- package/Standalone/Runtime/Internal/EventSender.cs +1 -1
- package/Standalone/Runtime/Internal/Http/NetUtils.cs +2 -2
- package/Standalone/Runtime/Internal/Openlog/Bean/TapOpenlogLogGroup.cs +39 -0
- package/Standalone/Runtime/Internal/Openlog/Bean/TapOpenlogLogGroup.cs.meta +11 -0
- package/Standalone/Runtime/Internal/Openlog/Bean/TapOpenlogStoreBean.cs +33 -0
- package/Standalone/Runtime/Internal/Openlog/Bean/TapOpenlogStoreBean.cs.meta +11 -0
- package/Standalone/Runtime/Internal/Openlog/Bean.meta +8 -0
- package/Standalone/Runtime/Internal/Openlog/TapOpenlogHttpClient.cs +164 -0
- package/Standalone/Runtime/Internal/Openlog/TapOpenlogHttpClient.cs.meta +11 -0
- package/Standalone/Runtime/Internal/Openlog/TapOpenlogParamConstants.cs +104 -0
- package/Standalone/Runtime/Internal/Openlog/TapOpenlogParamConstants.cs.meta +11 -0
- package/Standalone/Runtime/Internal/Openlog/TapOpenlogQueueBase.cs +198 -0
- package/Standalone/Runtime/Internal/Openlog/TapOpenlogQueueBase.cs.meta +11 -0
- package/Standalone/Runtime/Internal/Openlog/TapOpenlogQueueBusiness.cs +17 -0
- package/Standalone/Runtime/Internal/Openlog/TapOpenlogQueueBusiness.cs.meta +11 -0
- package/Standalone/Runtime/Internal/Openlog/TapOpenlogQueueTechnology.cs +15 -0
- package/Standalone/Runtime/Internal/Openlog/TapOpenlogQueueTechnology.cs.meta +11 -0
- package/Standalone/Runtime/Internal/Openlog/TapOpenlogStandalone.cs +190 -0
- package/Standalone/Runtime/Internal/Openlog/TapOpenlogStandalone.cs.meta +11 -0
- package/Standalone/Runtime/Internal/Openlog.meta +8 -0
- package/Standalone/Runtime/Internal/Tracker.cs +2 -2
- package/Standalone/Runtime/Internal/Utils/TapProtoBufffer.cs +28 -0
- package/Standalone/Runtime/Internal/Utils/TapProtoBufffer.cs.meta +11 -0
- package/Standalone/Runtime/Internal/Utils.meta +8 -0
- package/Standalone/Runtime/Public/TapCoreStandalone.cs +6 -3
- package/package.json +1 -1
- /package/Runtime/Public/{TapTapSDKCoreOptions.cs.meta → TapTapSdkOptions.cs.meta} +0 -0
|
@@ -5,6 +5,7 @@ using System.Collections.Generic;
|
|
|
5
5
|
using UnityEditor;
|
|
6
6
|
using System.IO;
|
|
7
7
|
using TapSDK.Core.Internal.Utils;
|
|
8
|
+
using TapSDK.Core.Standalone.Internal.Openlog;
|
|
8
9
|
|
|
9
10
|
namespace TapSDK.Core.Standalone
|
|
10
11
|
{
|
|
@@ -16,7 +17,7 @@ namespace TapSDK.Core.Standalone
|
|
|
16
17
|
internal static Prefs Prefs;
|
|
17
18
|
internal static Tracker Tracker;
|
|
18
19
|
internal static User User;
|
|
19
|
-
internal static
|
|
20
|
+
internal static TapTapSdkOptions coreOptions;
|
|
20
21
|
public static bool isRnd = false;
|
|
21
22
|
internal static bool enableAutoEvent = true;
|
|
22
23
|
|
|
@@ -45,7 +46,7 @@ namespace TapSDK.Core.Standalone
|
|
|
45
46
|
/// Initializes the TapCore SDK with the specified options.
|
|
46
47
|
/// </summary>
|
|
47
48
|
/// <param name="options">The TapCore SDK options.</param>
|
|
48
|
-
public void Init(
|
|
49
|
+
public void Init(TapTapSdkOptions options)
|
|
49
50
|
{
|
|
50
51
|
Init(options, null);
|
|
51
52
|
}
|
|
@@ -55,7 +56,7 @@ namespace TapSDK.Core.Standalone
|
|
|
55
56
|
/// </summary>
|
|
56
57
|
/// <param name="coreOption">The TapCore SDK core options.</param>
|
|
57
58
|
/// <param name="otherOptions">Additional TapCore SDK options.</param>
|
|
58
|
-
public void Init(
|
|
59
|
+
public void Init(TapTapSdkOptions coreOption, TapTapSdkBaseOptions[] otherOptions)
|
|
59
60
|
{
|
|
60
61
|
Debug.Log("SDK inited with other options + " + coreOption.ToString() + coreOption.ToString());
|
|
61
62
|
coreOptions = coreOption;
|
|
@@ -79,6 +80,8 @@ namespace TapSDK.Core.Standalone
|
|
|
79
80
|
|
|
80
81
|
Tracker.Init();
|
|
81
82
|
|
|
83
|
+
TapOpenlogStandalone.Init();
|
|
84
|
+
|
|
82
85
|
requestClientSetting();
|
|
83
86
|
}
|
|
84
87
|
|
package/package.json
CHANGED
|
File without changes
|