com.taptap.sdk.core 4.3.10 → 4.3.12

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.
@@ -216,10 +216,18 @@ namespace TapSDK.Core.Editor
216
216
  {
217
217
  plistElementList = rootDic.CreateArray("LSApplicationQueriesSchemes");
218
218
  }
219
-
219
+
220
+ string listData = "";
221
+ foreach (var item in plistElementList.values) {
222
+ if ( item is PlistElementString ){
223
+ listData += item.AsString() + ";";
224
+ }
225
+ }
220
226
  foreach (var t in items)
221
227
  {
222
- plistElementList.AddString(t);
228
+ if (!listData.Contains(t + ";")) {
229
+ plistElementList.AddString(t);
230
+ }
223
231
  }
224
232
 
225
233
  if (string.IsNullOrEmpty(infoPlistPath)) return false;
@@ -1,22 +1,16 @@
1
+ <?xml version="1.0" ?>
1
2
  <dependencies>
2
-
3
- <!-- Android maven dependencies -->
4
- <androidPackages>
5
- <repositories>
6
- <repository>https://repo.maven.apache.org/maven2</repository>
7
- </repositories>
8
- <androidPackage spec="com.taptap.sdk:tap-core-unity:4.3.10"/>
9
- </androidPackages>
10
-
11
- <!-- iOS Cocoapod dependencies can be specified by each iosPod element. -->
12
- <iosPods>
13
- <sources>
14
- <source>https://github.com/CocoaPods/Specs.git</source>
15
- </sources>
16
-
17
- <iosPod name="Protobuf" version="~> 3.0" bitcodeEnabled="false" addToAllTargets="false"/>
18
- <iosPod name="TapTapCoreSDK" version="~> 4.3.10" bitcodeEnabled="false" addToAllTargets="false"/>
19
-
20
- </iosPods>
21
-
3
+ <androidPackages>
4
+ <repositories>
5
+ <repository>https://repo.maven.apache.org/maven2</repository>
6
+ </repositories>
7
+ <androidPackage spec="com.taptap.sdk:tap-core-unity:4.3.12"/>
8
+ </androidPackages>
9
+ <iosPods>
10
+ <sources>
11
+ <source>https://github.com/CocoaPods/Specs.git</source>
12
+ </sources>
13
+ <iosPod name="Protobuf" version="~> 3.0" bitcodeEnabled="false" addToAllTargets="false"/>
14
+ <iosPod name="TapTapCoreSDK" version="~> 4.3.10" bitcodeEnabled="false" addToAllTargets="false"/>
15
+ </iosPods>
22
16
  </dependencies>
@@ -11,7 +11,7 @@ using TapSDK.Core.Internal.Log;
11
11
 
12
12
  namespace TapSDK.Core {
13
13
  public class TapTapSDK {
14
- public static readonly string Version = "4.3.10";
14
+ public static readonly string Version = "4.3.12";
15
15
 
16
16
  public static string SDKPlatform = "TapSDK-Unity";
17
17
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "com.taptap.sdk.core",
3
3
  "displayName": "TapTapSDK Core",
4
4
  "description": "TapTapSDK Core",
5
- "version": "4.3.10",
5
+ "version": "4.3.12",
6
6
  "unity": "2019.4",
7
7
  "license": "MIT",
8
8
  "dependencies": {