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
|
-
|
|
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
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
|
|
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>
|