com.taptap.sdk.cloudsave 4.9.4 → 4.10.0-beta.1
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.
- package/Mobile/Editor/NativeDependencies.xml +3 -3
- package/Runtime/Public/TapTapCloudSave.cs +1 -1
- package/Standalone/Plugins/x86_64/cloudsave_sdk.dll +0 -0
- package/Standalone/Runtime/Internal/TapCloudSaveWrapper.cs +1 -5
- package/package.json +10 -10
- package/link.xml +0 -4
- package/link.xml.meta +0 -7
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
2
|
<dependencies>
|
|
3
3
|
<androidPackages>
|
|
4
4
|
<repositories>
|
|
5
5
|
<repository>https://repo.maven.apache.org/maven2</repository>
|
|
6
6
|
</repositories>
|
|
7
|
-
<androidPackage spec="com.taptap.sdk:tap-cloudsave-unity:4.
|
|
7
|
+
<androidPackage spec="com.taptap.sdk:tap-cloudsave-unity:4.10.0-beta.1"/>
|
|
8
8
|
</androidPackages>
|
|
9
9
|
<iosPods>
|
|
10
10
|
<sources>
|
|
11
11
|
<source>https://github.com/CocoaPods/Specs.git</source>
|
|
12
12
|
</sources>
|
|
13
|
-
<iosPod addToAllTargets="false" bitcodeEnabled="false" name="TapTapSDK/CloudSave" version="4.
|
|
13
|
+
<iosPod addToAllTargets="false" bitcodeEnabled="false" name="TapTapSDK/CloudSave" version="4.10.0-beta.1"/>
|
|
14
14
|
</iosPods>
|
|
15
15
|
</dependencies>
|
|
@@ -7,7 +7,7 @@ namespace TapSDK.CloudSave
|
|
|
7
7
|
{
|
|
8
8
|
public class TapTapCloudSave
|
|
9
9
|
{
|
|
10
|
-
public static readonly string Version = "4.
|
|
10
|
+
public static readonly string Version = "4.10.0-beta.1";
|
|
11
11
|
|
|
12
12
|
public static void RegisterCloudSaveCallback(ITapCloudSaveCallback callback)
|
|
13
13
|
{
|
|
Binary file
|
|
@@ -10,8 +10,6 @@ namespace TapSDK.CloudSave.Standalone
|
|
|
10
10
|
internal const string DllName = "cloudsave_sdk";
|
|
11
11
|
#elif UNITY_STANDALONE_OSX || UNITY_EDITOR_OSX
|
|
12
12
|
internal const string DllName = "libcloudsave_sdk";
|
|
13
|
-
#elif UNITY_STANDALONE_LINUX || UNITY_EDITOR_LINUX
|
|
14
|
-
internal const string DllName = "libcloudsave_sdk";
|
|
15
13
|
#endif
|
|
16
14
|
|
|
17
15
|
/**
|
|
@@ -439,7 +437,6 @@ namespace TapSDK.CloudSave.Standalone
|
|
|
439
437
|
{
|
|
440
438
|
result = GetUTF8Byte(intPtr);
|
|
441
439
|
}
|
|
442
|
-
|
|
443
440
|
archiveDataSize = dataSize;
|
|
444
441
|
return result;
|
|
445
442
|
}
|
|
@@ -481,7 +478,6 @@ namespace TapSDK.CloudSave.Standalone
|
|
|
481
478
|
{
|
|
482
479
|
result = GetUTF8Byte(intPtr);
|
|
483
480
|
}
|
|
484
|
-
|
|
485
481
|
return result;
|
|
486
482
|
}
|
|
487
483
|
finally
|
|
@@ -519,4 +515,4 @@ namespace TapSDK.CloudSave.Standalone
|
|
|
519
515
|
return copyByte;
|
|
520
516
|
}
|
|
521
517
|
}
|
|
522
|
-
}
|
|
518
|
+
}
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
2
|
+
"name": "com.taptap.sdk.cloudsave",
|
|
3
|
+
"displayName": "TapTapSDK CloudSave",
|
|
4
|
+
"description": "TapTapSDK CloudSave",
|
|
5
|
+
"version": "4.10.0-beta.1",
|
|
6
|
+
"unity": "2019.4",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"com.taptap.sdk.core": "4.10.0-beta.1",
|
|
10
|
+
"com.taptap.sdk.login": "4.10.0-beta.1"
|
|
11
|
+
}
|
|
12
12
|
}
|
package/link.xml
DELETED