@blueid/access-capacitor 0.109.0 → 1.0.0
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/ios/CBlueIDAccess.xcframework/Info.plist +5 -5
- package/ios/CBlueIDAccess.xcframework/ios-arm64/libCBlueIDAccess.a +0 -0
- package/ios/CBlueIDAccess.xcframework/ios-arm64_x86_64-simulator/libCBlueIDAccess.a +0 -0
- package/ios/CBlueIDAccess.xcframework/macos-arm64_x86_64/libCBlueIDAccess.a +0 -0
- package/ios/Plugin/BlueIDAccessSDK/BlueAccess.swift +1 -1
- package/package.json +1 -1
|
@@ -10,16 +10,15 @@
|
|
|
10
10
|
<key>HeadersPath</key>
|
|
11
11
|
<string>Headers</string>
|
|
12
12
|
<key>LibraryIdentifier</key>
|
|
13
|
-
<string>
|
|
13
|
+
<string>ios-arm64</string>
|
|
14
14
|
<key>LibraryPath</key>
|
|
15
15
|
<string>libCBlueIDAccess.a</string>
|
|
16
16
|
<key>SupportedArchitectures</key>
|
|
17
17
|
<array>
|
|
18
18
|
<string>arm64</string>
|
|
19
|
-
<string>x86_64</string>
|
|
20
19
|
</array>
|
|
21
20
|
<key>SupportedPlatform</key>
|
|
22
|
-
<string>
|
|
21
|
+
<string>ios</string>
|
|
23
22
|
</dict>
|
|
24
23
|
<dict>
|
|
25
24
|
<key>BinaryPath</key>
|
|
@@ -46,15 +45,16 @@
|
|
|
46
45
|
<key>HeadersPath</key>
|
|
47
46
|
<string>Headers</string>
|
|
48
47
|
<key>LibraryIdentifier</key>
|
|
49
|
-
<string>
|
|
48
|
+
<string>macos-arm64_x86_64</string>
|
|
50
49
|
<key>LibraryPath</key>
|
|
51
50
|
<string>libCBlueIDAccess.a</string>
|
|
52
51
|
<key>SupportedArchitectures</key>
|
|
53
52
|
<array>
|
|
54
53
|
<string>arm64</string>
|
|
54
|
+
<string>x86_64</string>
|
|
55
55
|
</array>
|
|
56
56
|
<key>SupportedPlatform</key>
|
|
57
|
-
<string>
|
|
57
|
+
<string>macos</string>
|
|
58
58
|
</dict>
|
|
59
59
|
</array>
|
|
60
60
|
<key>CFBundlePackageType</key>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -585,7 +585,7 @@ public class BlueClaimAccessDeviceCommand: BlueSdkAsyncCommand {
|
|
|
585
585
|
|
|
586
586
|
try await BlueSynchronizeMobileAccessCommand(sdkService).runAsync(credentialID: credential.credentialID.id)
|
|
587
587
|
|
|
588
|
-
let status = try await BlueSynchronizeAccessDeviceCommand(sdkService).runAsync(credentialID: credential.credentialID.id, deviceID: deviceID)
|
|
588
|
+
let status = try await BlueSynchronizeAccessDeviceCommand(sdkService).runAsync(credentialID: credential.credentialID.id, deviceID: deviceID, showModal: true)
|
|
589
589
|
|
|
590
590
|
blueFireListeners(fireEvent: .accessDeviceClaimed, data: nil)
|
|
591
591
|
|