com.taptap.sdk.relation 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-unity:4.7.
|
|
7
|
+
<androidPackage spec="com.taptap.sdk:tap-relation-unity:4.7.2"/>
|
|
8
8
|
</androidPackages>
|
|
9
9
|
</dependencies>
|
|
@@ -36,17 +36,6 @@ namespace TapSDK.Relation.Mobile
|
|
|
36
36
|
.CommandBuilder());
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
public void SetOrientation(int orientation)
|
|
40
|
-
{
|
|
41
|
-
EngineBridge.GetInstance().CallHandler(new Command.Builder()
|
|
42
|
-
.Service(SERVICE_NAME)
|
|
43
|
-
.Method("setOrientation")
|
|
44
|
-
.Args("orientation", orientation)
|
|
45
|
-
.Callback(false)
|
|
46
|
-
.OnceTime(true)
|
|
47
|
-
.CommandBuilder());
|
|
48
|
-
}
|
|
49
|
-
|
|
50
39
|
public void StartMessenger()
|
|
51
40
|
{
|
|
52
41
|
EngineBridge.GetInstance().CallHandler(new Command.Builder()
|
|
@@ -32,11 +32,6 @@ namespace TapSDK.Relation.Internal
|
|
|
32
32
|
platformWrapper?.Init(clientId, regionType, screenOrientation);
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
-
public void SetOrientation(int orientation)
|
|
36
|
-
{
|
|
37
|
-
platformWrapper?.SetOrientation(orientation);
|
|
38
|
-
}
|
|
39
|
-
|
|
40
35
|
public void StartMessenger()
|
|
41
36
|
{
|
|
42
37
|
platformWrapper?.StartMessenger();
|
|
@@ -20,11 +20,6 @@ namespace TapSDK.Relation
|
|
|
20
20
|
TapTapRelationManager.Instance.Init(clientId, regionType, screenOrientation);
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
public static void SetOrientation(int orientation)
|
|
24
|
-
{
|
|
25
|
-
TapTapRelationManager.Instance.SetOrientation(orientation);
|
|
26
|
-
}
|
|
27
|
-
|
|
28
23
|
public static void StartMessenger()
|
|
29
24
|
{
|
|
30
25
|
TapTapRelationManager.Instance.StartMessenger();
|
|
@@ -76,7 +71,7 @@ namespace TapSDK.Relation
|
|
|
76
71
|
}
|
|
77
72
|
|
|
78
73
|
|
|
79
|
-
public static readonly string Version = "4.7.0";
|
|
74
|
+
public static readonly string Version = "4.7.2-beta.0";
|
|
80
75
|
|
|
81
76
|
|
|
82
77
|
}
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
2
|
+
"name": "com.taptap.sdk.relation",
|
|
3
|
+
"displayName": "TapTapSDK Relation",
|
|
4
|
+
"description": "TapTapSDK Relation",
|
|
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
|
}
|