com.taptap.sdk.relationlite 4.10.1-beta.1 → 4.10.2
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.
- package/Mobile/Editor/BuidPostProcessor.cs +56 -56
- package/Mobile/Editor/BuidPostProcessor.cs.meta +11 -11
- package/Mobile/Editor/NativeDependencies.xml +14 -14
- package/Mobile/Editor/NativeDependencies.xml.meta +7 -7
- package/Mobile/Editor/TapRelationLiteMobileProcessBuild.cs.meta +11 -11
- package/Mobile/Editor/TapSDK.RelationLite.Mobile.Editor.asmdef +18 -18
- package/Mobile/Editor/TapSDK.RelationLite.Mobile.Editor.asmdef.meta +7 -7
- package/Mobile/Editor.meta +8 -8
- package/Mobile/Runtime/TapSDK.RelationLite.Mobile.Runtime.asmdef +22 -22
- package/Mobile/Runtime/TapSDK.RelationLite.Mobile.Runtime.asmdef.meta +7 -7
- package/Mobile/Runtime/TapTapRelationLiteImpl.cs +385 -385
- package/Mobile/Runtime/TapTapRelationLiteImpl.cs.meta +11 -11
- package/Mobile/Runtime.meta +8 -8
- package/Mobile.meta +8 -8
- package/Runtime/Internal/Init/RelationLiteInitTask.cs +19 -19
- package/Runtime/Internal/Init/RelationLiteInitTask.cs.meta +11 -11
- package/Runtime/Internal/Init.meta +8 -8
- package/Runtime/Internal/TapTapRelationLiteManager.cs +98 -98
- package/Runtime/Internal/TapTapRelationLiteManager.cs.meta +11 -11
- package/Runtime/Internal.meta +8 -8
- package/Runtime/Public/FollowStatus.cs +19 -19
- package/Runtime/Public/FollowStatus.cs.meta +11 -11
- package/Runtime/Public/ITapTapRelationLite.cs +30 -30
- package/Runtime/Public/ITapTapRelationLite.cs.meta +11 -11
- package/Runtime/Public/ITapTapRelationLiteCallback.cs +8 -8
- package/Runtime/Public/ITapTapRelationLiteCallback.cs.meta +11 -11
- package/Runtime/Public/ITapTapRelationLiteRequestCallback.cs +15 -15
- package/Runtime/Public/ITapTapRelationLiteRequestCallback.cs.meta +11 -11
- package/Runtime/Public/RelationLiteUserInfo.cs +19 -19
- package/Runtime/Public/RelationLiteUserInfo.cs.meta +11 -11
- package/Runtime/Public/RelationLiteUserItem.cs +17 -17
- package/Runtime/Public/RelationLiteUserItem.cs.meta +11 -11
- package/Runtime/Public/TapRelationLiteUserResult.cs +17 -17
- package/Runtime/Public/TapRelationLiteUserResult.cs.meta +7 -7
- package/Runtime/Public/TapTapRelationLite.cs +77 -77
- package/Runtime/Public/TapTapRelationLite.cs.meta +11 -11
- package/Runtime/Public.meta +8 -8
- package/Runtime/TapSDK.RelationLite.Runtime.asmdef +14 -14
- package/Runtime/TapSDK.RelationLite.Runtime.asmdef.meta +7 -7
- package/Runtime.meta +8 -8
- package/link.xml +3 -3
- package/link.xml.meta +7 -7
- package/package.json +11 -11
- package/package.json.meta +7 -7
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: af1c5d94c142b47f4b10fac9333806d8
|
|
3
|
-
MonoImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
serializedVersion: 2
|
|
6
|
-
defaultReferences: []
|
|
7
|
-
executionOrder: 0
|
|
8
|
-
icon: {instanceID: 0}
|
|
9
|
-
userData:
|
|
10
|
-
assetBundleName:
|
|
11
|
-
assetBundleVariant:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: af1c5d94c142b47f4b10fac9333806d8
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {instanceID: 0}
|
|
9
|
+
userData:
|
|
10
|
+
assetBundleName:
|
|
11
|
+
assetBundleVariant:
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
using System;
|
|
2
|
-
using Newtonsoft.Json;
|
|
3
|
-
|
|
4
|
-
namespace TapSDK.RelationLite
|
|
5
|
-
{
|
|
6
|
-
[Serializable]
|
|
7
|
-
public class RelationLiteUserItem
|
|
8
|
-
{
|
|
9
|
-
[JsonProperty("follow_status")]
|
|
10
|
-
public FollowStatus followStatus;
|
|
11
|
-
|
|
12
|
-
[JsonProperty("created_at")]
|
|
13
|
-
public long createdAt;
|
|
14
|
-
|
|
15
|
-
[JsonProperty("user")]
|
|
16
|
-
public RelationLiteUserInfo user;
|
|
17
|
-
}
|
|
1
|
+
using System;
|
|
2
|
+
using Newtonsoft.Json;
|
|
3
|
+
|
|
4
|
+
namespace TapSDK.RelationLite
|
|
5
|
+
{
|
|
6
|
+
[Serializable]
|
|
7
|
+
public class RelationLiteUserItem
|
|
8
|
+
{
|
|
9
|
+
[JsonProperty("follow_status")]
|
|
10
|
+
public FollowStatus followStatus;
|
|
11
|
+
|
|
12
|
+
[JsonProperty("created_at")]
|
|
13
|
+
public long createdAt;
|
|
14
|
+
|
|
15
|
+
[JsonProperty("user")]
|
|
16
|
+
public RelationLiteUserInfo user;
|
|
17
|
+
}
|
|
18
18
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: 46adf4ef48e094ee59c36721f746dcad
|
|
3
|
-
MonoImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
serializedVersion: 2
|
|
6
|
-
defaultReferences: []
|
|
7
|
-
executionOrder: 0
|
|
8
|
-
icon: {instanceID: 0}
|
|
9
|
-
userData:
|
|
10
|
-
assetBundleName:
|
|
11
|
-
assetBundleVariant:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 46adf4ef48e094ee59c36721f746dcad
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {instanceID: 0}
|
|
9
|
+
userData:
|
|
10
|
+
assetBundleName:
|
|
11
|
+
assetBundleVariant:
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
using System;
|
|
2
|
-
using System.Collections.Generic;
|
|
3
|
-
|
|
4
|
-
namespace TapSDK.RelationLite
|
|
5
|
-
{
|
|
6
|
-
public class RelationLiteUserResult
|
|
7
|
-
{
|
|
8
|
-
public List<RelationLiteUserItem> list;
|
|
9
|
-
|
|
10
|
-
public string nextPageToken;
|
|
11
|
-
|
|
12
|
-
public RelationLiteUserResult(List<RelationLiteUserItem> data, string token)
|
|
13
|
-
{
|
|
14
|
-
this.list = data;
|
|
15
|
-
this.nextPageToken = token;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
1
|
+
using System;
|
|
2
|
+
using System.Collections.Generic;
|
|
3
|
+
|
|
4
|
+
namespace TapSDK.RelationLite
|
|
5
|
+
{
|
|
6
|
+
public class RelationLiteUserResult
|
|
7
|
+
{
|
|
8
|
+
public List<RelationLiteUserItem> list;
|
|
9
|
+
|
|
10
|
+
public string nextPageToken;
|
|
11
|
+
|
|
12
|
+
public RelationLiteUserResult(List<RelationLiteUserItem> data, string token)
|
|
13
|
+
{
|
|
14
|
+
this.list = data;
|
|
15
|
+
this.nextPageToken = token;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
18
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: f0bc0e8fb5db44ee6b3214bd6eeb4260
|
|
3
|
-
DefaultImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
userData:
|
|
6
|
-
assetBundleName:
|
|
7
|
-
assetBundleVariant:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: f0bc0e8fb5db44ee6b3214bd6eeb4260
|
|
3
|
+
DefaultImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
userData:
|
|
6
|
+
assetBundleName:
|
|
7
|
+
assetBundleVariant:
|
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
using System;
|
|
2
|
-
using System.Collections.Generic;
|
|
3
|
-
using TapSDK.RelationLite.Internal;
|
|
4
|
-
using TapSDK.Core;
|
|
5
|
-
using TapSDK.Core.Internal.Utils;
|
|
6
|
-
using System.Threading.Tasks;
|
|
7
|
-
|
|
8
|
-
namespace TapSDK.RelationLite
|
|
9
|
-
{
|
|
10
|
-
public class TapTapRelationLiteConstants
|
|
11
|
-
{
|
|
12
|
-
public static readonly int CALLBACK_CODE_ON_STOP = 500;
|
|
13
|
-
|
|
14
|
-
// Relation action constants
|
|
15
|
-
public static readonly int ACTION_FOLLOW = 1;
|
|
16
|
-
public static readonly int ACTION_UNFOLLOW = 2;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
public class TapTapRelationLite
|
|
20
|
-
{
|
|
21
|
-
public static void Init(string clientId, TapTapRegionType regionType)
|
|
22
|
-
{
|
|
23
|
-
TapTapRelationLiteManager.Instance.Init(clientId, regionType);
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
public static void InviteGame()
|
|
27
|
-
{
|
|
28
|
-
TapTapRelationLiteManager.Instance.InviteGame();
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
public static void InviteTeam(string teamId)
|
|
32
|
-
{
|
|
33
|
-
TapTapRelationLiteManager.Instance.InviteTeam(teamId);
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
public static Task<RelationLiteUserResult> GetFriendsList(string nextPageToken)
|
|
37
|
-
{
|
|
38
|
-
return TapTapRelationLiteManager.Instance.GetFriendsList(nextPageToken);
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
public static Task<RelationLiteUserResult> GetFollowingList(string nextPageToken)
|
|
42
|
-
{
|
|
43
|
-
return TapTapRelationLiteManager.Instance.GetFollowingList(nextPageToken);
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
public static Task<RelationLiteUserResult> GetFansList(string nextPageToken)
|
|
47
|
-
{
|
|
48
|
-
return TapTapRelationLiteManager.Instance.GetFansList(nextPageToken);
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
public static Task SyncRelationshipWithOpenId(int action, string nickname, string friendNickname, string friendOpenId)
|
|
52
|
-
{
|
|
53
|
-
return TapTapRelationLiteManager.Instance.SyncRelationshipWithOpenId(action, nickname, friendNickname, friendOpenId);
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
public static Task SyncRelationshipWithUnionId(int action, string nickname, string friendNickname, string friendUnionId)
|
|
57
|
-
{
|
|
58
|
-
return TapTapRelationLiteManager.Instance.SyncRelationshipWithUnionId(action, nickname, friendNickname, friendUnionId);
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
public static void ShowTapUserProfile(string openId, string unionId)
|
|
62
|
-
{
|
|
63
|
-
TapTapRelationLiteManager.Instance.ShowTapUserProfile(openId, unionId);
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
public static void RegisterRelationLiteCallback(ITapTapRelationLiteCallback callback)
|
|
67
|
-
{
|
|
68
|
-
TapTapRelationLiteManager.Instance.RegisterRelationLiteCallback(callback);
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
public static void UnregisterRelationLiteCallback(ITapTapRelationLiteCallback callback)
|
|
72
|
-
{
|
|
73
|
-
TapTapRelationLiteManager.Instance.UnregisterRelationLiteCallback(callback);
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
public static readonly string Version = "4.10.
|
|
77
|
-
}
|
|
1
|
+
using System;
|
|
2
|
+
using System.Collections.Generic;
|
|
3
|
+
using TapSDK.RelationLite.Internal;
|
|
4
|
+
using TapSDK.Core;
|
|
5
|
+
using TapSDK.Core.Internal.Utils;
|
|
6
|
+
using System.Threading.Tasks;
|
|
7
|
+
|
|
8
|
+
namespace TapSDK.RelationLite
|
|
9
|
+
{
|
|
10
|
+
public class TapTapRelationLiteConstants
|
|
11
|
+
{
|
|
12
|
+
public static readonly int CALLBACK_CODE_ON_STOP = 500;
|
|
13
|
+
|
|
14
|
+
// Relation action constants
|
|
15
|
+
public static readonly int ACTION_FOLLOW = 1;
|
|
16
|
+
public static readonly int ACTION_UNFOLLOW = 2;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
public class TapTapRelationLite
|
|
20
|
+
{
|
|
21
|
+
public static void Init(string clientId, TapTapRegionType regionType)
|
|
22
|
+
{
|
|
23
|
+
TapTapRelationLiteManager.Instance.Init(clientId, regionType);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
public static void InviteGame()
|
|
27
|
+
{
|
|
28
|
+
TapTapRelationLiteManager.Instance.InviteGame();
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
public static void InviteTeam(string teamId)
|
|
32
|
+
{
|
|
33
|
+
TapTapRelationLiteManager.Instance.InviteTeam(teamId);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
public static Task<RelationLiteUserResult> GetFriendsList(string nextPageToken)
|
|
37
|
+
{
|
|
38
|
+
return TapTapRelationLiteManager.Instance.GetFriendsList(nextPageToken);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
public static Task<RelationLiteUserResult> GetFollowingList(string nextPageToken)
|
|
42
|
+
{
|
|
43
|
+
return TapTapRelationLiteManager.Instance.GetFollowingList(nextPageToken);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
public static Task<RelationLiteUserResult> GetFansList(string nextPageToken)
|
|
47
|
+
{
|
|
48
|
+
return TapTapRelationLiteManager.Instance.GetFansList(nextPageToken);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
public static Task SyncRelationshipWithOpenId(int action, string nickname, string friendNickname, string friendOpenId)
|
|
52
|
+
{
|
|
53
|
+
return TapTapRelationLiteManager.Instance.SyncRelationshipWithOpenId(action, nickname, friendNickname, friendOpenId);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
public static Task SyncRelationshipWithUnionId(int action, string nickname, string friendNickname, string friendUnionId)
|
|
57
|
+
{
|
|
58
|
+
return TapTapRelationLiteManager.Instance.SyncRelationshipWithUnionId(action, nickname, friendNickname, friendUnionId);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
public static void ShowTapUserProfile(string openId, string unionId)
|
|
62
|
+
{
|
|
63
|
+
TapTapRelationLiteManager.Instance.ShowTapUserProfile(openId, unionId);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
public static void RegisterRelationLiteCallback(ITapTapRelationLiteCallback callback)
|
|
67
|
+
{
|
|
68
|
+
TapTapRelationLiteManager.Instance.RegisterRelationLiteCallback(callback);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
public static void UnregisterRelationLiteCallback(ITapTapRelationLiteCallback callback)
|
|
72
|
+
{
|
|
73
|
+
TapTapRelationLiteManager.Instance.UnregisterRelationLiteCallback(callback);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
public static readonly string Version = "4.10.2";
|
|
77
|
+
}
|
|
78
78
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: 174475d58cd804709a7c2c75096455f9
|
|
3
|
-
MonoImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
serializedVersion: 2
|
|
6
|
-
defaultReferences: []
|
|
7
|
-
executionOrder: 0
|
|
8
|
-
icon: {instanceID: 0}
|
|
9
|
-
userData:
|
|
10
|
-
assetBundleName:
|
|
11
|
-
assetBundleVariant:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 174475d58cd804709a7c2c75096455f9
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {instanceID: 0}
|
|
9
|
+
userData:
|
|
10
|
+
assetBundleName:
|
|
11
|
+
assetBundleVariant:
|
package/Runtime/Public.meta
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: 8556603e2afd5496390c7eb288ed379e
|
|
3
|
-
folderAsset: yes
|
|
4
|
-
DefaultImporter:
|
|
5
|
-
externalObjects: {}
|
|
6
|
-
userData:
|
|
7
|
-
assetBundleName:
|
|
8
|
-
assetBundleVariant:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 8556603e2afd5496390c7eb288ed379e
|
|
3
|
+
folderAsset: yes
|
|
4
|
+
DefaultImporter:
|
|
5
|
+
externalObjects: {}
|
|
6
|
+
userData:
|
|
7
|
+
assetBundleName:
|
|
8
|
+
assetBundleVariant:
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "TapSDK.RelationLite.Runtime",
|
|
3
|
-
"references": [
|
|
4
|
-
"GUID:7d5ef2062f3704e1ab74aac0e4d5a1a7"
|
|
5
|
-
],
|
|
6
|
-
"includePlatforms": [],
|
|
7
|
-
"excludePlatforms": [],
|
|
8
|
-
"allowUnsafeCode": false,
|
|
9
|
-
"overrideReferences": false,
|
|
10
|
-
"precompiledReferences": [],
|
|
11
|
-
"autoReferenced": true,
|
|
12
|
-
"defineConstraints": [],
|
|
13
|
-
"versionDefines": [],
|
|
14
|
-
"noEngineReferences": false
|
|
1
|
+
{
|
|
2
|
+
"name": "TapSDK.RelationLite.Runtime",
|
|
3
|
+
"references": [
|
|
4
|
+
"GUID:7d5ef2062f3704e1ab74aac0e4d5a1a7"
|
|
5
|
+
],
|
|
6
|
+
"includePlatforms": [],
|
|
7
|
+
"excludePlatforms": [],
|
|
8
|
+
"allowUnsafeCode": false,
|
|
9
|
+
"overrideReferences": false,
|
|
10
|
+
"precompiledReferences": [],
|
|
11
|
+
"autoReferenced": true,
|
|
12
|
+
"defineConstraints": [],
|
|
13
|
+
"versionDefines": [],
|
|
14
|
+
"noEngineReferences": false
|
|
15
15
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: 8880fb2a8006d444dbd9edc4ab2647af
|
|
3
|
-
AssemblyDefinitionImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
userData:
|
|
6
|
-
assetBundleName:
|
|
7
|
-
assetBundleVariant:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 8880fb2a8006d444dbd9edc4ab2647af
|
|
3
|
+
AssemblyDefinitionImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
userData:
|
|
6
|
+
assetBundleName:
|
|
7
|
+
assetBundleVariant:
|
package/Runtime.meta
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: c12b65975cd8c457dac75db0e82b032b
|
|
3
|
-
folderAsset: yes
|
|
4
|
-
DefaultImporter:
|
|
5
|
-
externalObjects: {}
|
|
6
|
-
userData:
|
|
7
|
-
assetBundleName:
|
|
8
|
-
assetBundleVariant:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: c12b65975cd8c457dac75db0e82b032b
|
|
3
|
+
folderAsset: yes
|
|
4
|
+
DefaultImporter:
|
|
5
|
+
externalObjects: {}
|
|
6
|
+
userData:
|
|
7
|
+
assetBundleName:
|
|
8
|
+
assetBundleVariant:
|
package/link.xml
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<linker>
|
|
2
|
-
<assembly fullname="TapSDK.RelationLite.Runtime" preserve="all" />
|
|
3
|
-
<assembly fullname="TapSDK.RelationLite.Mobile.Runtime" preserve="all" />
|
|
1
|
+
<linker>
|
|
2
|
+
<assembly fullname="TapSDK.RelationLite.Runtime" preserve="all" />
|
|
3
|
+
<assembly fullname="TapSDK.RelationLite.Mobile.Runtime" preserve="all" />
|
|
4
4
|
</linker>
|
package/link.xml.meta
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: ee67fbdc707b241dda5d2107f37df0fe
|
|
3
|
-
TextScriptImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
userData:
|
|
6
|
-
assetBundleName:
|
|
7
|
-
assetBundleVariant:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: ee67fbdc707b241dda5d2107f37df0fe
|
|
3
|
+
TextScriptImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
userData:
|
|
6
|
+
assetBundleName:
|
|
7
|
+
assetBundleVariant:
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "com.taptap.sdk.relationlite",
|
|
3
|
-
"displayName": "TapTapSDK RelationLite",
|
|
4
|
-
"description": "TapTapSDK RelationLite",
|
|
5
|
-
"version": "4.10.
|
|
6
|
-
"unity": "2019.4",
|
|
7
|
-
"license": "MIT",
|
|
8
|
-
"dependencies": {
|
|
9
|
-
"com.taptap.sdk.core": "4.10.
|
|
10
|
-
"com.taptap.sdk.login": "4.10.
|
|
11
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "com.taptap.sdk.relationlite",
|
|
3
|
+
"displayName": "TapTapSDK RelationLite",
|
|
4
|
+
"description": "TapTapSDK RelationLite",
|
|
5
|
+
"version": "4.10.2",
|
|
6
|
+
"unity": "2019.4",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"com.taptap.sdk.core": "4.10.2",
|
|
10
|
+
"com.taptap.sdk.login": "4.10.2"
|
|
11
|
+
}
|
|
12
12
|
}
|
package/package.json.meta
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: c3c19870c550d4bd19214dd380f5ac6c
|
|
3
|
-
TextScriptImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
userData:
|
|
6
|
-
assetBundleName:
|
|
7
|
-
assetBundleVariant:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: c3c19870c550d4bd19214dd380f5ac6c
|
|
3
|
+
TextScriptImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
userData:
|
|
6
|
+
assetBundleName:
|
|
7
|
+
assetBundleVariant:
|