com.taptap.sdk.relation 4.6.1-beta.1 → 4.6.1-beta.4

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,6 +4,6 @@
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.6.1-beta.1"/>
7
+ <androidPackage spec="com.taptap.sdk:tap-relation-unity:4.6.1-beta.4"/>
8
8
  </androidPackages>
9
9
  </dependencies>
@@ -2,15 +2,19 @@
2
2
  using UnityEditor.Build.Reporting;
3
3
  using TapSDK.Core.Editor;
4
4
 
5
- namespace TapTap.Relation.Mobile.Editor {
5
+ namespace TapSDK.Relation.Mobile.Editor {
6
+ /// <summary>
7
+ /// 处理 TapSDK Relation 模块在移动平台的构建过程
8
+ /// 确保正确的程序集被包含在构建中
9
+ /// </summary>
6
10
  public class TapRelationMobileProcessBuild : SDKLinkProcessBuild {
7
11
  public override int callbackOrder => 0;
8
12
 
9
13
  public override string LinkPath => "TapSDK/Relation/link.xml";
10
14
 
11
15
  public override LinkedAssembly[] LinkedAssemblies => new LinkedAssembly[] {
12
- new LinkedAssembly { Fullname = "TapTap.Relation.Runtime" },
13
- new LinkedAssembly { Fullname = "TapTap.Relation.Mobile.Runtime" }
16
+ new LinkedAssembly { Fullname = "TapSDK.Relation.Runtime" },
17
+ new LinkedAssembly { Fullname = "TapSDK.Relation.Mobile.Runtime" }
14
18
  };
15
19
 
16
20
  public override Func<BuildReport, bool> IsTargetPlatform => (report) => {
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "TapTap.Relation.Mobile.Editor",
2
+ "name": "TapSDK.Relation.Mobile.Editor",
3
3
  "references": [
4
4
  "GUID:56f3da7a178484843974054bafe77e73"
5
5
  ],
@@ -76,7 +76,7 @@ namespace TapSDK.Relation
76
76
  }
77
77
 
78
78
 
79
- public static readonly string Version = "4.6.1-beta.1";
79
+ public static readonly string Version = "4.6.1-beta.4";
80
80
 
81
81
 
82
82
  }
package/link.xml CHANGED
@@ -1,4 +1,4 @@
1
1
  <linker>
2
- <assembly fullname="TapTap.Relation.Runtime" preserve="all" />
3
- <assembly fullname="TapTap.Relation.Mobile.Runtime" preserve="all" />
2
+ <assembly fullname="TapSDK.Relation.Runtime" preserve="all" />
3
+ <assembly fullname="TapSDK.Relation.Mobile.Runtime" preserve="all" />
4
4
  </linker>
package/package.json CHANGED
@@ -2,11 +2,11 @@
2
2
  "name": "com.taptap.sdk.relation",
3
3
  "displayName": "TapTapSDK Relation",
4
4
  "description": "TapTapSDK Relation",
5
- "version": "4.6.1-beta.1",
5
+ "version": "4.6.1-beta.4",
6
6
  "unity": "2019.4",
7
7
  "license": "MIT",
8
8
  "dependencies": {
9
- "com.taptap.sdk.core": "4.6.1-beta.1",
10
- "com.taptap.sdk.login": "4.6.1-beta.1"
9
+ "com.taptap.sdk.core": "4.6.1-beta.4",
10
+ "com.taptap.sdk.login": "4.6.1-beta.4"
11
11
  }
12
12
  }