2 Commits

Author SHA1 Message Date
a.kudelko
7ddfc74b4b Update hublib ios by a.kudelko at 2025-06-11T14:38:01 2025-06-11 14:38:55 +03:00
a.kudelko
f1352c2f3a Update hublib ios by a.kudelko at 2025-06-05T16:03:50 2025-06-05 16:04:37 +03:00
4 changed files with 22 additions and 16 deletions

View File

@@ -4,22 +4,6 @@
<dict> <dict>
<key>AvailableLibraries</key> <key>AvailableLibraries</key>
<array> <array>
<dict>
<key>BinaryPath</key>
<string>libhublib.a</string>
<key>HeadersPath</key>
<string>Headers</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>libhublib.a</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
</dict>
<dict> <dict>
<key>BinaryPath</key> <key>BinaryPath</key>
<string>libhublib.a</string> <string>libhublib.a</string>
@@ -39,6 +23,22 @@
<key>SupportedPlatformVariant</key> <key>SupportedPlatformVariant</key>
<string>simulator</string> <string>simulator</string>
</dict> </dict>
<dict>
<key>BinaryPath</key>
<string>libhublib.a</string>
<key>HeadersPath</key>
<string>Headers</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>libhublib.a</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
</dict>
</array> </array>
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>XFWK</string> <string>XFWK</string>

View File

@@ -472,6 +472,12 @@ private let initializationResult: InitializationResult = {
if bindings_contract_version != scaffolding_contract_version { if bindings_contract_version != scaffolding_contract_version {
return InitializationResult.contractVersionMismatch return InitializationResult.contractVersionMismatch
} }
if (uniffi_hublib_checksum_func_get_secret_value() != 32241) {
return InitializationResult.apiChecksumMismatch
}
if (uniffi_hublib_checksum_func_recreate_secret_value() != 13679) {
return InitializationResult.apiChecksumMismatch
}
return InitializationResult.ok return InitializationResult.ok
}() }()