com.taptap.sdk.update 4.3.4 → 4.3.10-alpha.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.
@@ -6,7 +6,7 @@
6
6
  <repositories>
7
7
  <repository>https://repo.maven.apache.org/maven2</repository>
8
8
  </repositories>
9
- <androidPackage spec="com.taptap.sdk:tap-update:4.3.4"/>
9
+ <androidPackage spec="com.taptap.sdk:tap-update:4.3.10"/>
10
10
  </androidPackages>
11
11
 
12
12
  <!-- iOS Cocoapod dependencies can be specified by each iosPod element. -->
@@ -6,14 +6,14 @@ namespace TapSDK.Update.Internal.Init {
6
6
  public sealed class TapUpdateInitTask : IInitTask {
7
7
  public int Order => 14;
8
8
 
9
- public void Init(TapTapSDKCoreOptions coreOption){
9
+ public void Init(TapTapSdkOptions coreOption){
10
10
  #if !UNITY_EDITOR && UNITY_ANDROID
11
11
  TapTapUpdate.Init(coreOption.clientId, coreOption.clientToken);
12
12
  #endif
13
13
 
14
14
  }
15
15
 
16
- public void Init(TapTapSDKCoreOptions coreOption, TapTapSDKBaseOption[] otherOptions)
16
+ public void Init(TapTapSdkOptions coreOption, TapTapSdkBaseOptions[] otherOptions)
17
17
  {
18
18
  #if !UNITY_EDITOR && UNITY_ANDROID
19
19
  TapTapUpdate.Init(coreOption.clientId, coreOption.clientToken);
@@ -5,6 +5,9 @@ using System;
5
5
 
6
6
  namespace TapSDK.Update {
7
7
  public class TapTapUpdate {
8
+
9
+ public static readonly string Version = "4.3.10-alpha.4";
10
+
8
11
  static readonly ITapUpdateBridge update;
9
12
 
10
13
  static TapTapUpdate() {
package/link.xml ADDED
@@ -0,0 +1,3 @@
1
+ <linker>
2
+ <assembly fullname="TapSDK.Update.Mobile.Runtime" preserve="all" />
3
+ </linker>
package/link.xml.meta ADDED
@@ -0,0 +1,7 @@
1
+ fileFormatVersion: 2
2
+ guid: 07f44a6c1a97646019dc9845c5a15f68
3
+ TextScriptImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant:
package/package.json CHANGED
@@ -2,10 +2,10 @@
2
2
  "name": "com.taptap.sdk.update",
3
3
  "displayName": "TapTapSDK Update",
4
4
  "description": "TapTapSDK Update",
5
- "version": "4.3.4",
5
+ "version": "4.3.10-alpha.4",
6
6
  "unity": "2019.4",
7
7
  "license": "MIT",
8
8
  "dependencies": {
9
- "com.taptap.sdk.core": "4.3.4"
9
+ "com.taptap.sdk.core": "4.3.10-alpha.4"
10
10
  }
11
11
  }