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.
Files changed (38) hide show
  1. package/Mobile/Editor/NativeDependencies.xml +2 -2
  2. package/Mobile/Runtime/IOSNativeWrapper.cs +3 -3
  3. package/Mobile/Runtime/TapCoreMobile.cs +5 -5
  4. package/Runtime/Internal/Init/IInitTask.cs +2 -2
  5. package/Runtime/Internal/Log/TapLog.cs +117 -0
  6. package/Runtime/Internal/Log/TapLog.cs.meta +11 -0
  7. package/Runtime/Internal/Log.meta +8 -0
  8. package/Runtime/Internal/Platform/ITapCorePlatform.cs +2 -2
  9. package/Runtime/Public/TapTapEvent.cs +1 -1
  10. package/Runtime/Public/TapTapSDK.cs +10 -7
  11. package/Runtime/Public/{TapTapSDKCoreOptions.cs → TapTapSdkOptions.cs} +2 -2
  12. package/Standalone/Runtime/Internal/EventSender.cs +1 -1
  13. package/Standalone/Runtime/Internal/Http/NetUtils.cs +2 -2
  14. package/Standalone/Runtime/Internal/Openlog/Bean/TapOpenlogLogGroup.cs +39 -0
  15. package/Standalone/Runtime/Internal/Openlog/Bean/TapOpenlogLogGroup.cs.meta +11 -0
  16. package/Standalone/Runtime/Internal/Openlog/Bean/TapOpenlogStoreBean.cs +33 -0
  17. package/Standalone/Runtime/Internal/Openlog/Bean/TapOpenlogStoreBean.cs.meta +11 -0
  18. package/Standalone/Runtime/Internal/Openlog/Bean.meta +8 -0
  19. package/Standalone/Runtime/Internal/Openlog/TapOpenlogHttpClient.cs +164 -0
  20. package/Standalone/Runtime/Internal/Openlog/TapOpenlogHttpClient.cs.meta +11 -0
  21. package/Standalone/Runtime/Internal/Openlog/TapOpenlogParamConstants.cs +104 -0
  22. package/Standalone/Runtime/Internal/Openlog/TapOpenlogParamConstants.cs.meta +11 -0
  23. package/Standalone/Runtime/Internal/Openlog/TapOpenlogQueueBase.cs +198 -0
  24. package/Standalone/Runtime/Internal/Openlog/TapOpenlogQueueBase.cs.meta +11 -0
  25. package/Standalone/Runtime/Internal/Openlog/TapOpenlogQueueBusiness.cs +17 -0
  26. package/Standalone/Runtime/Internal/Openlog/TapOpenlogQueueBusiness.cs.meta +11 -0
  27. package/Standalone/Runtime/Internal/Openlog/TapOpenlogQueueTechnology.cs +15 -0
  28. package/Standalone/Runtime/Internal/Openlog/TapOpenlogQueueTechnology.cs.meta +11 -0
  29. package/Standalone/Runtime/Internal/Openlog/TapOpenlogStandalone.cs +190 -0
  30. package/Standalone/Runtime/Internal/Openlog/TapOpenlogStandalone.cs.meta +11 -0
  31. package/Standalone/Runtime/Internal/Openlog.meta +8 -0
  32. package/Standalone/Runtime/Internal/Tracker.cs +2 -2
  33. package/Standalone/Runtime/Internal/Utils/TapProtoBufffer.cs +28 -0
  34. package/Standalone/Runtime/Internal/Utils/TapProtoBufffer.cs.meta +11 -0
  35. package/Standalone/Runtime/Internal/Utils.meta +8 -0
  36. package/Standalone/Runtime/Public/TapCoreStandalone.cs +6 -3
  37. package/package.json +1 -1
  38. /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 TapTapSDKCoreOptions coreOptions;
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(TapTapSDKCoreOptions options)
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(TapTapSDKCoreOptions coreOption, TapTapSDKBaseOption[] otherOptions)
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
@@ -2,7 +2,7 @@
2
2
  "name": "com.taptap.sdk.core",
3
3
  "displayName": "TapTapSDK Core",
4
4
  "description": "TapTapSDK Core",
5
- "version": "4.3.4",
5
+ "version": "4.3.10-alpha.4",
6
6
  "unity": "2019.4",
7
7
  "license": "MIT",
8
8
  "dependencies": {