com.xd.sdk.share 7.1.1 → 7.2.0

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.
@@ -96,7 +96,7 @@ namespace XD.SDK.Share.Internal.Mobile
96
96
 
97
97
  EngineBridge.GetInstance().CallHandler(command, result =>
98
98
  {
99
- XDGLogger.Debug("Share 方法结果: " + result.ToJson());
99
+ XDGLogger.Debug("Share 方法结果: " + result.ToJson(), XDGLoggerTag.Bridge);
100
100
 
101
101
  var xdgError = result.Parse2XDGError();
102
102
  if (xdgError != null)
@@ -14,7 +14,7 @@ namespace XD.SDK.Share
14
14
  #endif
15
15
  if (shareFeatures == null)
16
16
  {
17
- XDGLogger.Error("unsupported platform: " + Application.platform);
17
+ XDGLogger.Error("unsupported platform: " + Application.platform, XDGLoggerTag.Share);
18
18
  }
19
19
  }
20
20
 
@@ -22,7 +22,7 @@ namespace XD.SDK.Share
22
22
  {
23
23
  if (shareFeatures == null)
24
24
  {
25
- XDGLogger.Error("unsupported platform: " + Application.platform);
25
+ XDGLogger.Error("unsupported platform: " + Application.platform, XDGLoggerTag.Share);
26
26
  }
27
27
  else
28
28
  {
@@ -34,7 +34,7 @@ namespace XD.SDK.Share
34
34
  {
35
35
  if (shareFeatures == null)
36
36
  {
37
- XDGLogger.Error("unsupported platform: " + Application.platform);
37
+ XDGLogger.Error("unsupported platform: " + Application.platform, XDGLoggerTag.Share);
38
38
  }
39
39
  return shareFeatures?.IsAppInstalled(platformType) ?? false;
40
40
  }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "com.xd.sdk.share",
3
3
  "displayName": "XDGSDK Share",
4
- "version": "7.1.1",
4
+ "version": "7.2.0",
5
5
  "description": "XDGSDK",
6
6
  "unity": "2019.3",
7
7
  "license": "MIT",
8
8
  "dependencies": {
9
- "com.xd.sdk.common": "7.1.1"
9
+ "com.xd.sdk.common": "7.2.0"
10
10
  }
11
11
  }