com.taptap.sdk.relationlite 4.7.0 → 4.7.2-beta.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.
@@ -1,9 +1,9 @@
1
- <?xml version="1.0" ?>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
2
  <dependencies>
3
3
  <androidPackages>
4
4
  <repositories>
5
5
  <repository>https://repo.maven.apache.org/maven2</repository>
6
6
  </repositories>
7
- <androidPackage spec="com.taptap.sdk:tap-relation-lite-unity:4.7.0"/>
7
+ <androidPackage spec="com.taptap.sdk:tap-relation-lite-unity:4.7.2"/>
8
8
  </androidPackages>
9
9
  </dependencies>
@@ -35,17 +35,6 @@ namespace TapSDK.RelationLite
35
35
  Debug.Log($"TapTapRelationLite Init with clientId: {clientId}, regionType: {regionType}");
36
36
  }
37
37
 
38
- public void SetOrientation(int orientation)
39
- {
40
- EngineBridge.GetInstance().CallHandler(new Command.Builder()
41
- .Service(SERVICE_NAME)
42
- .Method("setOrientation")
43
- .Args("orientation", orientation)
44
- .Callback(false)
45
- .OnceTime(true)
46
- .CommandBuilder());
47
- }
48
-
49
38
  public void InviteGame()
50
39
  {
51
40
  Debug.Log("TapTapRelationLite InviteGame");
@@ -36,11 +36,6 @@ namespace TapSDK.RelationLite.Internal
36
36
  _impl?.Init(clientId, regionType);
37
37
  }
38
38
 
39
- public void SetOrientation(int orientation)
40
- {
41
- _impl?.SetOrientation(orientation);
42
- }
43
-
44
39
  public void InviteGame()
45
40
  {
46
41
  _impl?.InviteGame();
@@ -7,8 +7,6 @@ namespace TapSDK.RelationLite
7
7
  {
8
8
  void Init(string clientId, TapTapRegionType regionType);
9
9
 
10
- void SetOrientation(int orientation);
11
-
12
10
  void InviteGame();
13
11
 
14
12
  void InviteTeam(string teamId);
@@ -22,11 +22,6 @@ namespace TapSDK.RelationLite
22
22
  TapTapRelationLiteManager.Instance.Init(clientId, regionType);
23
23
  }
24
24
 
25
- public static void SetOrientation(int orientation)
26
- {
27
- TapTapRelationLiteManager.Instance.SetOrientation(orientation);
28
- }
29
-
30
25
  public static void InviteGame()
31
26
  {
32
27
  TapTapRelationLiteManager.Instance.InviteGame();
@@ -77,6 +72,6 @@ namespace TapSDK.RelationLite
77
72
  TapTapRelationLiteManager.Instance.UnregisterRelationLiteCallback(callback);
78
73
  }
79
74
 
80
- public static readonly string Version = "4.7.0";
75
+ public static readonly string Version = "4.7.2-beta.0";
81
76
  }
82
77
  }
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
- "name": "com.taptap.sdk.relationlite",
3
- "displayName": "TapTapSDK RelationLite",
4
- "description": "TapTapSDK RelationLite",
5
- "version": "4.7.0",
6
- "unity": "2019.4",
7
- "license": "MIT",
8
- "dependencies": {
9
- "com.taptap.sdk.core": "4.7.0",
10
- "com.taptap.sdk.login": "4.7.0"
11
- }
2
+ "name": "com.taptap.sdk.relationlite",
3
+ "displayName": "TapTapSDK RelationLite",
4
+ "description": "TapTapSDK RelationLite",
5
+ "version": "4.7.2-beta.0",
6
+ "unity": "2019.4",
7
+ "license": "MIT",
8
+ "dependencies": {
9
+ "com.taptap.sdk.core": "4.7.2-beta.0",
10
+ "com.taptap.sdk.login": "4.7.2-beta.0"
11
+ }
12
12
  }