com.taptap.sdk.relationlite 4.10.1 → 4.10.3-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.
- 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,56 +1,56 @@
|
|
|
1
|
-
using UnityEngine;
|
|
2
|
-
using UnityEditor;
|
|
3
|
-
using UnityEditor.Callbacks;
|
|
4
|
-
# if UNITY_IOS
|
|
5
|
-
using UnityEditor.iOS.Xcode;
|
|
6
|
-
#endif
|
|
7
|
-
using System.IO;
|
|
8
|
-
using System.Collections.Generic;
|
|
9
|
-
using System.Linq;
|
|
10
|
-
using TapSDK.Core.Editor;
|
|
11
|
-
|
|
12
|
-
#if UNITY_IOS
|
|
13
|
-
public class BuildPostProcessor
|
|
14
|
-
{
|
|
15
|
-
[PostProcessBuild(999)]
|
|
16
|
-
public static void OnPostProcessBuild(BuildTarget buildTarget, string path)
|
|
17
|
-
{
|
|
18
|
-
if (buildTarget == BuildTarget.iOS)
|
|
19
|
-
{
|
|
20
|
-
var projPath = TapSDKCoreCompile.GetProjPath(path);
|
|
21
|
-
var proj = TapSDKCoreCompile.ParseProjPath(projPath);
|
|
22
|
-
var target = TapSDKCoreCompile.GetUnityTarget(proj);
|
|
23
|
-
|
|
24
|
-
if (TapSDKCoreCompile.CheckTarget(target))
|
|
25
|
-
{
|
|
26
|
-
Debug.LogError("Unity-iPhone is NUll");
|
|
27
|
-
return;
|
|
28
|
-
}
|
|
29
|
-
if (TapSDKCoreCompile.HandlerIOSSetting(path,
|
|
30
|
-
Application.dataPath,
|
|
31
|
-
"TapTapRelationLiteResource",
|
|
32
|
-
"com.taptap.sdk.relationlite",
|
|
33
|
-
"RelationLite",
|
|
34
|
-
new[] {"TapTapRelationLiteResource.bundle"},
|
|
35
|
-
target, projPath, proj))
|
|
36
|
-
{
|
|
37
|
-
Debug.Log("TapRelationLite add Bundle Success!");
|
|
38
|
-
}
|
|
39
|
-
if (TapSDKCoreCompile.HandlerIOSSetting(path,
|
|
40
|
-
Application.dataPath,
|
|
41
|
-
"TapTapProfileResource",
|
|
42
|
-
"com.taptap.sdk.profile",
|
|
43
|
-
"Profile",
|
|
44
|
-
new[] {"TapTapProfileResource.bundle"},
|
|
45
|
-
target, projPath, proj))
|
|
46
|
-
{
|
|
47
|
-
Debug.Log("TapProfile add Bundle Success!");
|
|
48
|
-
TapSDKCoreCompile.ExecutePodCommand("pod deintegrate && pod install", path);
|
|
49
|
-
return;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
Debug.LogWarning("TapRelationLite add Bundle Failed!");
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
#endif
|
|
1
|
+
using UnityEngine;
|
|
2
|
+
using UnityEditor;
|
|
3
|
+
using UnityEditor.Callbacks;
|
|
4
|
+
# if UNITY_IOS
|
|
5
|
+
using UnityEditor.iOS.Xcode;
|
|
6
|
+
#endif
|
|
7
|
+
using System.IO;
|
|
8
|
+
using System.Collections.Generic;
|
|
9
|
+
using System.Linq;
|
|
10
|
+
using TapSDK.Core.Editor;
|
|
11
|
+
|
|
12
|
+
#if UNITY_IOS
|
|
13
|
+
public class BuildPostProcessor
|
|
14
|
+
{
|
|
15
|
+
[PostProcessBuild(999)]
|
|
16
|
+
public static void OnPostProcessBuild(BuildTarget buildTarget, string path)
|
|
17
|
+
{
|
|
18
|
+
if (buildTarget == BuildTarget.iOS)
|
|
19
|
+
{
|
|
20
|
+
var projPath = TapSDKCoreCompile.GetProjPath(path);
|
|
21
|
+
var proj = TapSDKCoreCompile.ParseProjPath(projPath);
|
|
22
|
+
var target = TapSDKCoreCompile.GetUnityTarget(proj);
|
|
23
|
+
|
|
24
|
+
if (TapSDKCoreCompile.CheckTarget(target))
|
|
25
|
+
{
|
|
26
|
+
Debug.LogError("Unity-iPhone is NUll");
|
|
27
|
+
return;
|
|
28
|
+
}
|
|
29
|
+
if (TapSDKCoreCompile.HandlerIOSSetting(path,
|
|
30
|
+
Application.dataPath,
|
|
31
|
+
"TapTapRelationLiteResource",
|
|
32
|
+
"com.taptap.sdk.relationlite",
|
|
33
|
+
"RelationLite",
|
|
34
|
+
new[] {"TapTapRelationLiteResource.bundle"},
|
|
35
|
+
target, projPath, proj))
|
|
36
|
+
{
|
|
37
|
+
Debug.Log("TapRelationLite add Bundle Success!");
|
|
38
|
+
}
|
|
39
|
+
if (TapSDKCoreCompile.HandlerIOSSetting(path,
|
|
40
|
+
Application.dataPath,
|
|
41
|
+
"TapTapProfileResource",
|
|
42
|
+
"com.taptap.sdk.profile",
|
|
43
|
+
"Profile",
|
|
44
|
+
new[] {"TapTapProfileResource.bundle"},
|
|
45
|
+
target, projPath, proj))
|
|
46
|
+
{
|
|
47
|
+
Debug.Log("TapProfile add Bundle Success!");
|
|
48
|
+
TapSDKCoreCompile.ExecutePodCommand("pod deintegrate && pod install", path);
|
|
49
|
+
return;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
Debug.LogWarning("TapRelationLite add Bundle Failed!");
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
#endif
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: 7f64b2045541a4d5ca3a507e88d35c81
|
|
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: 7f64b2045541a4d5ca3a507e88d35c81
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {instanceID: 0}
|
|
9
|
+
userData:
|
|
10
|
+
assetBundleName:
|
|
11
|
+
assetBundleVariant:
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
|
2
|
-
<dependencies>
|
|
3
|
-
<androidPackages>
|
|
4
|
-
<repositories>
|
|
5
|
-
<repository>https://repo.maven.apache.org/maven2</repository>
|
|
6
|
-
</repositories>
|
|
7
|
-
<androidPackage spec="com.taptap.sdk:tap-relation-lite-unity:4.10.1" />
|
|
8
|
-
</androidPackages>
|
|
9
|
-
<iosPods>
|
|
10
|
-
<sources>
|
|
11
|
-
<source>https://github.com/CocoaPods/Specs.git</source>
|
|
12
|
-
</sources>
|
|
13
|
-
<iosPod addToAllTargets="false" bitcodeEnabled="false" name="TapTapSDK/RelationLite" version="4.10.1" />
|
|
14
|
-
</iosPods>
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
|
2
|
+
<dependencies>
|
|
3
|
+
<androidPackages>
|
|
4
|
+
<repositories>
|
|
5
|
+
<repository>https://repo.maven.apache.org/maven2</repository>
|
|
6
|
+
</repositories>
|
|
7
|
+
<androidPackage spec="com.taptap.sdk:tap-relation-lite-unity:4.10.3-beta.1" />
|
|
8
|
+
</androidPackages>
|
|
9
|
+
<iosPods>
|
|
10
|
+
<sources>
|
|
11
|
+
<source>https://github.com/CocoaPods/Specs.git</source>
|
|
12
|
+
</sources>
|
|
13
|
+
<iosPod addToAllTargets="false" bitcodeEnabled="false" name="TapTapSDK/RelationLite" version="4.10.3-beta.1" />
|
|
14
|
+
</iosPods>
|
|
15
15
|
</dependencies>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: 031b433e4a7574f1ba114280a11d8f2e
|
|
3
|
-
TextScriptImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
userData:
|
|
6
|
-
assetBundleName:
|
|
7
|
-
assetBundleVariant:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 031b433e4a7574f1ba114280a11d8f2e
|
|
3
|
+
TextScriptImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
userData:
|
|
6
|
+
assetBundleName:
|
|
7
|
+
assetBundleVariant:
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: 5807ad40da34740a1a3b06417569af1e
|
|
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: 5807ad40da34740a1a3b06417569af1e
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {instanceID: 0}
|
|
9
|
+
userData:
|
|
10
|
+
assetBundleName:
|
|
11
|
+
assetBundleVariant:
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "TapSDK.RelationLite.Mobile.Editor",
|
|
3
|
-
"references": [
|
|
4
|
-
"GUID:56f3da7a178484843974054bafe77e73",
|
|
5
|
-
"GUID:8880fb2a8006d444dbd9edc4ab2647af",
|
|
6
|
-
"GUID:d276369ee184b4cb69a14a9fe493e761"
|
|
7
|
-
],
|
|
8
|
-
"includePlatforms": [
|
|
9
|
-
"Editor"
|
|
10
|
-
],
|
|
11
|
-
"excludePlatforms": [],
|
|
12
|
-
"allowUnsafeCode": false,
|
|
13
|
-
"overrideReferences": false,
|
|
14
|
-
"precompiledReferences": [],
|
|
15
|
-
"autoReferenced": true,
|
|
16
|
-
"defineConstraints": [],
|
|
17
|
-
"versionDefines": [],
|
|
18
|
-
"noEngineReferences": false
|
|
1
|
+
{
|
|
2
|
+
"name": "TapSDK.RelationLite.Mobile.Editor",
|
|
3
|
+
"references": [
|
|
4
|
+
"GUID:56f3da7a178484843974054bafe77e73",
|
|
5
|
+
"GUID:8880fb2a8006d444dbd9edc4ab2647af",
|
|
6
|
+
"GUID:d276369ee184b4cb69a14a9fe493e761"
|
|
7
|
+
],
|
|
8
|
+
"includePlatforms": [
|
|
9
|
+
"Editor"
|
|
10
|
+
],
|
|
11
|
+
"excludePlatforms": [],
|
|
12
|
+
"allowUnsafeCode": false,
|
|
13
|
+
"overrideReferences": false,
|
|
14
|
+
"precompiledReferences": [],
|
|
15
|
+
"autoReferenced": true,
|
|
16
|
+
"defineConstraints": [],
|
|
17
|
+
"versionDefines": [],
|
|
18
|
+
"noEngineReferences": false
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: 4c897404031b24a789fa1e8e9a339cf3
|
|
3
|
-
AssemblyDefinitionImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
userData:
|
|
6
|
-
assetBundleName:
|
|
7
|
-
assetBundleVariant:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 4c897404031b24a789fa1e8e9a339cf3
|
|
3
|
+
AssemblyDefinitionImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
userData:
|
|
6
|
+
assetBundleName:
|
|
7
|
+
assetBundleVariant:
|
package/Mobile/Editor.meta
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: f2795a6f8880c4f04ba87c18cfecda74
|
|
3
|
-
folderAsset: yes
|
|
4
|
-
DefaultImporter:
|
|
5
|
-
externalObjects: {}
|
|
6
|
-
userData:
|
|
7
|
-
assetBundleName:
|
|
8
|
-
assetBundleVariant:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: f2795a6f8880c4f04ba87c18cfecda74
|
|
3
|
+
folderAsset: yes
|
|
4
|
+
DefaultImporter:
|
|
5
|
+
externalObjects: {}
|
|
6
|
+
userData:
|
|
7
|
+
assetBundleName:
|
|
8
|
+
assetBundleVariant:
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "TapSDK.RelationLite.Mobile.Runtime",
|
|
3
|
-
"references": [
|
|
4
|
-
"GUID:8880fb2a8006d444dbd9edc4ab2647af",
|
|
5
|
-
"GUID:7d5ef2062f3704e1ab74aac0e4d5a1a7",
|
|
6
|
-
"GUID:10560023d8780423cb943c7a324b69f2",
|
|
7
|
-
"GUID:6f33d8db82c9445088544f91d41e65a2"
|
|
8
|
-
],
|
|
9
|
-
"includePlatforms": [
|
|
10
|
-
"Android",
|
|
11
|
-
"iOS"
|
|
12
|
-
],
|
|
13
|
-
"excludePlatforms": [],
|
|
14
|
-
"allowUnsafeCode": false,
|
|
15
|
-
"overrideReferences": true,
|
|
16
|
-
"precompiledReferences": [
|
|
17
|
-
"Newtonsoft.Json.dll"
|
|
18
|
-
],
|
|
19
|
-
"autoReferenced": true,
|
|
20
|
-
"defineConstraints": [],
|
|
21
|
-
"versionDefines": [],
|
|
22
|
-
"noEngineReferences": false
|
|
1
|
+
{
|
|
2
|
+
"name": "TapSDK.RelationLite.Mobile.Runtime",
|
|
3
|
+
"references": [
|
|
4
|
+
"GUID:8880fb2a8006d444dbd9edc4ab2647af",
|
|
5
|
+
"GUID:7d5ef2062f3704e1ab74aac0e4d5a1a7",
|
|
6
|
+
"GUID:10560023d8780423cb943c7a324b69f2",
|
|
7
|
+
"GUID:6f33d8db82c9445088544f91d41e65a2"
|
|
8
|
+
],
|
|
9
|
+
"includePlatforms": [
|
|
10
|
+
"Android",
|
|
11
|
+
"iOS"
|
|
12
|
+
],
|
|
13
|
+
"excludePlatforms": [],
|
|
14
|
+
"allowUnsafeCode": false,
|
|
15
|
+
"overrideReferences": true,
|
|
16
|
+
"precompiledReferences": [
|
|
17
|
+
"Newtonsoft.Json.dll"
|
|
18
|
+
],
|
|
19
|
+
"autoReferenced": true,
|
|
20
|
+
"defineConstraints": [],
|
|
21
|
+
"versionDefines": [],
|
|
22
|
+
"noEngineReferences": false
|
|
23
23
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: 472cd6ad2327447ed996e69cd4014c9b
|
|
3
|
-
AssemblyDefinitionImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
userData:
|
|
6
|
-
assetBundleName:
|
|
7
|
-
assetBundleVariant:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 472cd6ad2327447ed996e69cd4014c9b
|
|
3
|
+
AssemblyDefinitionImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
userData:
|
|
6
|
+
assetBundleName:
|
|
7
|
+
assetBundleVariant:
|