com.taptap.sdk.relation 4.6.2 → 4.7.0-alpha.14

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.
@@ -3,7 +3,8 @@
3
3
  <androidPackages>
4
4
  <repositories>
5
5
  <repository>https://repo.maven.apache.org/maven2</repository>
6
+ <repository>https://nexus.xmxdev.com/repository/maven-public</repository>
6
7
  </repositories>
7
- <androidPackage spec="com.taptap.sdk:tap-relation-unity:4.6.2"/>
8
+ <androidPackage spec="com.taptap.sdk:tap-relation-unity:4.7.0-alpha.14"/>
8
9
  </androidPackages>
9
10
  </dependencies>
@@ -1,5 +1,5 @@
1
1
  fileFormatVersion: 2
2
- guid: 6b57162f7c44c482e8dc690453957696
2
+ guid: 3eca0b5c93d104b338bca395c0eaefd2
3
3
  TextScriptImporter:
4
4
  externalObjects: {}
5
5
  userData:
@@ -1,3 +1,3 @@
1
1
  fileFormatVersion: 2
2
- guid: 14e4f181c92af4e46a5cce3a6d8e001d
2
+ guid: a88f8c2e692994f8f8e6f33b41b15878
3
3
  timeCreated: 1617120910
@@ -1,14 +1,12 @@
1
1
  {
2
2
  "name": "TapSDK.Relation.Mobile.Runtime",
3
3
  "references": [
4
- "GUID:5f5654759b7534ddebacbe2e8ef8a8da",
5
4
  "GUID:7d5ef2062f3704e1ab74aac0e4d5a1a7",
6
5
  "GUID:10560023d8780423cb943c7a324b69f2",
7
6
  "GUID:6f33d8db82c9445088544f91d41e65a2"
8
7
  ],
9
8
  "includePlatforms": [
10
- "Android",
11
- "iOS"
9
+ "Android"
12
10
  ],
13
11
  "excludePlatforms": [],
14
12
  "allowUnsafeCode": false,
@@ -1,5 +1,5 @@
1
1
  fileFormatVersion: 2
2
- guid: da39d911e3a9b4976a5ac3321184b46b
2
+ guid: 9389d29acc4a9443c8be9ab68f053711
3
3
  folderAsset: yes
4
4
  DefaultImporter:
5
5
  externalObjects: {}
package/Mobile.meta CHANGED
@@ -1,5 +1,5 @@
1
1
  fileFormatVersion: 2
2
- guid: 959bd5e2c38da42928689a18b041be54
2
+ guid: 7c4f03af16a8c4c96926105911b71e17
3
3
  folderAsset: yes
4
4
  DefaultImporter:
5
5
  externalObjects: {}
@@ -11,7 +11,6 @@ namespace TapSDK.Relation.Internal
11
11
 
12
12
  private TapTapRelationManager()
13
13
  {
14
-
15
14
  platformWrapper = BridgeUtils.CreateBridgeImplementation(typeof(ITapTapRelation),
16
15
  "TapSDK.Relation") as ITapTapRelation;
17
16
  }
@@ -30,62 +29,62 @@ namespace TapSDK.Relation.Internal
30
29
 
31
30
  public void Init(string clientId, TapTapRegionType regionType, int screenOrientation)
32
31
  {
33
- platformWrapper.Init(clientId, regionType, screenOrientation);
32
+ platformWrapper?.Init(clientId, regionType, screenOrientation);
34
33
  }
35
34
 
36
35
  public void SetOrientation(int orientation)
37
36
  {
38
- platformWrapper.SetOrientation(orientation);
37
+ platformWrapper?.SetOrientation(orientation);
39
38
  }
40
39
 
41
40
  public void StartMessenger()
42
41
  {
43
- platformWrapper.StartMessenger();
42
+ platformWrapper?.StartMessenger();
44
43
  }
45
44
 
46
45
  public void Prepare()
47
46
  {
48
- platformWrapper.Prepare();
47
+ platformWrapper?.Prepare();
49
48
  }
50
49
 
51
50
  public void InviteGame()
52
51
  {
53
- platformWrapper.InviteGame();
52
+ platformWrapper?.InviteGame();
54
53
  }
55
54
 
56
55
  public void InviteTeam(string teamId)
57
56
  {
58
- platformWrapper.InviteTeam(teamId);
57
+ platformWrapper?.InviteTeam(teamId);
59
58
  }
60
59
 
61
60
  public void ShowTapUserProfile(string openId, string unionId)
62
61
  {
63
- platformWrapper.ShowTapUserProfile(openId, unionId);
62
+ platformWrapper?.ShowTapUserProfile(openId, unionId);
64
63
  }
65
64
 
66
65
  public void GetNewFansCount(Action<int> callback)
67
66
  {
68
- platformWrapper.GetNewFansCount(callback);
67
+ platformWrapper?.GetNewFansCount(callback);
69
68
  }
70
69
 
71
70
  public void GetUnreadMessageCount(Action<int> callback)
72
71
  {
73
- platformWrapper.GetUnreadMessageCount(callback);
72
+ platformWrapper?.GetUnreadMessageCount(callback);
74
73
  }
75
74
 
76
75
  public void RegisterRelationCallback(ITapTapRelationCallback callback)
77
76
  {
78
- platformWrapper.RegisterRelationCallback(callback);
77
+ platformWrapper?.RegisterRelationCallback(callback);
79
78
  }
80
79
 
81
80
  public void UnregisterRelationCallback(ITapTapRelationCallback callback)
82
81
  {
83
- platformWrapper.UnregisterRelationCallback(callback);
82
+ platformWrapper?.UnregisterRelationCallback(callback);
84
83
  }
85
84
 
86
85
  public void Destroy()
87
86
  {
88
- platformWrapper.Destroy();
87
+ platformWrapper?.Destroy();
89
88
  }
90
89
  }
91
90
 
@@ -1,5 +1,5 @@
1
1
  fileFormatVersion: 2
2
- guid: 8da63bb46311147408921b4febd81ed8
2
+ guid: 61272466098644635b1945b20b813556
3
3
  folderAsset: yes
4
4
  DefaultImporter:
5
5
  externalObjects: {}
@@ -76,7 +76,7 @@ namespace TapSDK.Relation
76
76
  }
77
77
 
78
78
 
79
- public static readonly string Version = "4.6.2";
79
+ public static readonly string Version = "4.7.0-alpha.14";
80
80
 
81
81
 
82
82
  }
@@ -1,5 +1,5 @@
1
1
  fileFormatVersion: 2
2
- guid: 8309c6ffc88af4bd8b5fafd8620fee84
2
+ guid: eda360b2baff144ebb24c7b185b1c8d8
3
3
  folderAsset: yes
4
4
  DefaultImporter:
5
5
  externalObjects: {}
package/Runtime.meta CHANGED
@@ -1,5 +1,5 @@
1
1
  fileFormatVersion: 2
2
- guid: afb8f8b60d2104fc1b0eabbec0dec438
2
+ guid: 5ba306c5559a84ec69293b33a04939bc
3
3
  folderAsset: yes
4
4
  DefaultImporter:
5
5
  externalObjects: {}
package/package.json CHANGED
@@ -2,11 +2,11 @@
2
2
  "name": "com.taptap.sdk.relation",
3
3
  "displayName": "TapTapSDK Relation",
4
4
  "description": "TapTapSDK Relation",
5
- "version": "4.6.2",
5
+ "version": "4.7.0-alpha.14",
6
6
  "unity": "2019.4",
7
7
  "license": "MIT",
8
8
  "dependencies": {
9
- "com.taptap.sdk.core": "4.6.2",
10
- "com.taptap.sdk.login": "4.6.2"
9
+ "com.taptap.sdk.core": "4.7.0-alpha.14",
10
+ "com.taptap.sdk.login": "4.7.0-alpha.14"
11
11
  }
12
12
  }
package/package.json.meta CHANGED
@@ -1,5 +1,5 @@
1
1
  fileFormatVersion: 2
2
- guid: 35840672079da4a36b3c1346a5e8322e
2
+ guid: a64d991a479c34a2f92cc15d8c578c02
3
3
  TextScriptImporter:
4
4
  externalObjects: {}
5
5
  userData:
package/link.xml DELETED
@@ -1,4 +0,0 @@
1
- <linker>
2
- <assembly fullname="TapSDK.Relation.Runtime" preserve="all" />
3
- <assembly fullname="TapSDK.Relation.Mobile.Runtime" preserve="all" />
4
- </linker>
package/link.xml.meta DELETED
@@ -1,7 +0,0 @@
1
- fileFormatVersion: 2
2
- guid: df1e4fbf569b848a7915b1b196423573
3
- TextScriptImporter:
4
- externalObjects: {}
5
- userData:
6
- assetBundleName:
7
- assetBundleVariant: