@blueid/access-capacitor 0.107.0 → 0.108.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 +8 -8
- 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/BlueBluetooth.swift +5 -0
- package/package.json +1 -1
|
@@ -10,15 +10,16 @@
|
|
|
10
10
|
<key>HeadersPath</key>
|
|
11
11
|
<string>Headers</string>
|
|
12
12
|
<key>LibraryIdentifier</key>
|
|
13
|
-
<string>
|
|
13
|
+
<string>macos-arm64_x86_64</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>
|
|
19
20
|
</array>
|
|
20
21
|
<key>SupportedPlatform</key>
|
|
21
|
-
<string>
|
|
22
|
+
<string>macos</string>
|
|
22
23
|
</dict>
|
|
23
24
|
<dict>
|
|
24
25
|
<key>BinaryPath</key>
|
|
@@ -26,7 +27,7 @@
|
|
|
26
27
|
<key>HeadersPath</key>
|
|
27
28
|
<string>Headers</string>
|
|
28
29
|
<key>LibraryIdentifier</key>
|
|
29
|
-
<string>
|
|
30
|
+
<string>ios-arm64_x86_64-simulator</string>
|
|
30
31
|
<key>LibraryPath</key>
|
|
31
32
|
<string>libCBlueIDAccess.a</string>
|
|
32
33
|
<key>SupportedArchitectures</key>
|
|
@@ -35,7 +36,9 @@
|
|
|
35
36
|
<string>x86_64</string>
|
|
36
37
|
</array>
|
|
37
38
|
<key>SupportedPlatform</key>
|
|
38
|
-
<string>
|
|
39
|
+
<string>ios</string>
|
|
40
|
+
<key>SupportedPlatformVariant</key>
|
|
41
|
+
<string>simulator</string>
|
|
39
42
|
</dict>
|
|
40
43
|
<dict>
|
|
41
44
|
<key>BinaryPath</key>
|
|
@@ -43,18 +46,15 @@
|
|
|
43
46
|
<key>HeadersPath</key>
|
|
44
47
|
<string>Headers</string>
|
|
45
48
|
<key>LibraryIdentifier</key>
|
|
46
|
-
<string>ios-
|
|
49
|
+
<string>ios-arm64</string>
|
|
47
50
|
<key>LibraryPath</key>
|
|
48
51
|
<string>libCBlueIDAccess.a</string>
|
|
49
52
|
<key>SupportedArchitectures</key>
|
|
50
53
|
<array>
|
|
51
54
|
<string>arm64</string>
|
|
52
|
-
<string>x86_64</string>
|
|
53
55
|
</array>
|
|
54
56
|
<key>SupportedPlatform</key>
|
|
55
57
|
<string>ios</string>
|
|
56
|
-
<key>SupportedPlatformVariant</key>
|
|
57
|
-
<string>simulator</string>
|
|
58
58
|
</dict>
|
|
59
59
|
</array>
|
|
60
60
|
<key>CFBundlePackageType</key>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -170,6 +170,11 @@ internal func blueDisconnectBluetoothPeripheral(_ peripheral: CBPeripheral) thro
|
|
|
170
170
|
return
|
|
171
171
|
}
|
|
172
172
|
|
|
173
|
+
if peripheral.state == .connecting {
|
|
174
|
+
blueRemoveSignal(group: "bleCentral", name: "didConnect")
|
|
175
|
+
return
|
|
176
|
+
}
|
|
177
|
+
|
|
173
178
|
guard peripheral.state == .connected else {
|
|
174
179
|
throw BlueError(.unavailable)
|
|
175
180
|
}
|