com.taptap.sdk.relationlite 4.10.3-beta.3 → 4.10.4-beta.1
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.
|
@@ -4,12 +4,12 @@
|
|
|
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.10.3
|
|
7
|
+
<androidPackage spec="com.taptap.sdk:tap-relation-lite-unity:4.10.3" />
|
|
8
8
|
</androidPackages>
|
|
9
9
|
<iosPods>
|
|
10
10
|
<sources>
|
|
11
11
|
<source>https://github.com/CocoaPods/Specs.git</source>
|
|
12
12
|
</sources>
|
|
13
|
-
<iosPod addToAllTargets="false" bitcodeEnabled="false" name="TapTapSDK/RelationLite" version="4.10.3
|
|
13
|
+
<iosPod addToAllTargets="false" bitcodeEnabled="false" name="TapTapSDK/RelationLite" version="4.10.3" />
|
|
14
14
|
</iosPods>
|
|
15
15
|
</dependencies>
|
|
@@ -49,17 +49,17 @@ namespace TapSDK.RelationLite.Internal
|
|
|
49
49
|
|
|
50
50
|
public Task<RelationLiteUserResult> GetFriendsList(string nextPageToken)
|
|
51
51
|
{
|
|
52
|
-
return _impl?.GetFriendsList(nextPageToken);
|
|
52
|
+
return _impl?.GetFriendsList(nextPageToken ?? "");
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
public Task<RelationLiteUserResult> GetFollowingList(string nextPageToken)
|
|
56
56
|
{
|
|
57
|
-
return _impl?.GetFollowingList(nextPageToken);
|
|
57
|
+
return _impl?.GetFollowingList(nextPageToken ?? "");
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
public Task<RelationLiteUserResult> GetFansList(string nextPageToken)
|
|
61
61
|
{
|
|
62
|
-
return _impl?.GetFansList(nextPageToken);
|
|
62
|
+
return _impl?.GetFansList(nextPageToken ?? "");
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
public Task SyncRelationshipWithOpenId(int action, string nickname, string friendNickname, string friendOpenId)
|
|
@@ -74,7 +74,7 @@ namespace TapSDK.RelationLite.Internal
|
|
|
74
74
|
|
|
75
75
|
public void ShowTapUserProfile(string openId, string unionId)
|
|
76
76
|
{
|
|
77
|
-
_impl?.ShowTapUserProfile(openId, unionId);
|
|
77
|
+
_impl?.ShowTapUserProfile(openId ?? "", unionId ?? "");
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
|
package/package.json
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
"name": "com.taptap.sdk.relationlite",
|
|
3
3
|
"displayName": "TapTapSDK RelationLite",
|
|
4
4
|
"description": "TapTapSDK RelationLite",
|
|
5
|
-
"version": "4.10.
|
|
6
|
-
"unity": "
|
|
5
|
+
"version": "4.10.4-beta.1",
|
|
6
|
+
"unity": "2019.4",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"com.taptap.sdk.core": "4.10.
|
|
10
|
-
"com.taptap.sdk.login": "4.10.
|
|
9
|
+
"com.taptap.sdk.core": "4.10.4-beta.1",
|
|
10
|
+
"com.taptap.sdk.login": "4.10.4-beta.1"
|
|
11
11
|
}
|
|
12
12
|
}
|