com.taptap.sdk.cloudsave 4.9.2 → 4.9.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.
- 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 +5 -1
- package/link.xml +4 -0
- package/link.xml.meta +7 -0
- package/package.json +10 -10
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="
|
|
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.9.
|
|
7
|
+
<androidPackage spec="com.taptap.sdk:tap-cloudsave-unity:4.9.4" />
|
|
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.9.
|
|
13
|
+
<iosPod addToAllTargets="false" bitcodeEnabled="false" name="TapTapSDK/CloudSave" version="4.9.4" />
|
|
14
14
|
</iosPods>
|
|
15
15
|
</dependencies>
|
|
Binary file
|
|
@@ -10,6 +10,8 @@ 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";
|
|
13
15
|
#endif
|
|
14
16
|
|
|
15
17
|
/**
|
|
@@ -437,6 +439,7 @@ namespace TapSDK.CloudSave.Standalone
|
|
|
437
439
|
{
|
|
438
440
|
result = GetUTF8Byte(intPtr);
|
|
439
441
|
}
|
|
442
|
+
|
|
440
443
|
archiveDataSize = dataSize;
|
|
441
444
|
return result;
|
|
442
445
|
}
|
|
@@ -478,6 +481,7 @@ namespace TapSDK.CloudSave.Standalone
|
|
|
478
481
|
{
|
|
479
482
|
result = GetUTF8Byte(intPtr);
|
|
480
483
|
}
|
|
484
|
+
|
|
481
485
|
return result;
|
|
482
486
|
}
|
|
483
487
|
finally
|
|
@@ -515,4 +519,4 @@ namespace TapSDK.CloudSave.Standalone
|
|
|
515
519
|
return copyByte;
|
|
516
520
|
}
|
|
517
521
|
}
|
|
518
|
-
}
|
|
522
|
+
}
|
package/link.xml
ADDED
package/link.xml.meta
ADDED
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.9.4",
|
|
6
|
+
"unity": "2020.3.0f1",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"com.taptap.sdk.core": "4.9.4",
|
|
10
|
+
"com.taptap.sdk.login": "4.9.4"
|
|
11
|
+
}
|
|
12
12
|
}
|