com.taptap.sdk.license 4.9.0 → 4.9.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.
@@ -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-license:4.9.0"/>
7
+ <androidPackage spec="com.taptap.sdk:tap-license:4.9.2"/>
8
8
  </androidPackages>
9
9
  </dependencies>
@@ -151,14 +151,5 @@ namespace TapSDK.License.Mobile
151
151
  EngineBridge.GetInstance().CallHandler(command);
152
152
  }
153
153
 
154
- public void SetTestEnvironment(bool isTest){
155
- var command = new Command.Builder()
156
- .Service(TAP_LICENSE_SERVICE)
157
- .Method("setTestEnvironment")
158
- .Args("testEnv", isTest)
159
- .CommandBuilder();
160
- EngineBridge.GetInstance().CallHandler(command);
161
- }
162
-
163
154
  }
164
155
  }
@@ -14,8 +14,5 @@ namespace TapSDK.License.Internal {
14
14
  void QueryDLC(string[] skus);
15
15
 
16
16
  void PurchaseDLC(string sku);
17
-
18
- void SetTestEnvironment(bool isTest);
19
-
20
17
  }
21
18
  }
@@ -7,7 +7,7 @@ using TapSDK.Core;
7
7
  namespace TapSDK.License {
8
8
  public class TapTapLicense {
9
9
 
10
- public static readonly string Version = "4.9.0";
10
+ public static readonly string Version = "4.9.2";
11
11
 
12
12
  static readonly ITapLicenseBridge license;
13
13
 
@@ -48,13 +48,6 @@ namespace TapSDK.License {
48
48
  public static void PurchaseDLC(string dlc) {
49
49
  license.PurchaseDLC(dlc);
50
50
  }
51
-
52
- [Obsolete("No longer needed with new TapTap client and will be removed in the future")]
53
- public static void SetTestEnvironment(bool isTest)
54
- {
55
- license.SetTestEnvironment(isTest);
56
- }
57
-
58
51
 
59
52
  }
60
53
  }
@@ -149,11 +149,6 @@ namespace TapSDK.License.Standalone {
149
149
  }
150
150
  }
151
151
 
152
-
153
- public void SetTestEnvironment(bool isTest)
154
- {
155
- }
156
-
157
152
  public void PurchaseDLC(string skuId)
158
153
  {
159
154
  if (!CheckInit())
package/package.json CHANGED
@@ -2,10 +2,10 @@
2
2
  "name": "com.taptap.sdk.license",
3
3
  "displayName": "TapTapSDK License",
4
4
  "description": "TapTapSDK License",
5
- "version": "4.9.0",
5
+ "version": "4.9.2",
6
6
  "unity": "2019.4",
7
7
  "license": "MIT",
8
8
  "dependencies": {
9
- "com.taptap.sdk.core": "4.9.0"
9
+ "com.taptap.sdk.core": "4.9.2"
10
10
  }
11
11
  }