Skip to content

Commit b8734fb

Browse files
committed
chore: rebuild all with latest xcode
1 parent 02b264f commit b8734fb

File tree

63 files changed

+967
-27
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+967
-27
lines changed

packages/nativescript-barcodescanner/index.ios.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,8 @@ export class BarcodeScanner {
127127
this._audioSession.setActiveError(true);
128128
this._currentVolume = this._audioSession.outputVolume;
129129
if (!this._observerActive) {
130-
this._audioSession.addObserverForKeyPathOptionsContext(this._observer, 'outputVolume', 0, null);
130+
// TODO: is this 0 as any needed? is it maybe ios types being wrong?
131+
this._audioSession.addObserverForKeyPathOptionsContext(this._observer, 'outputVolume', 0 as any, null);
131132
this._observerActive = true;
132133
}
133134
}

packages/nativescript-barcodescanner/platforms/ios/BarcodeScannerFramework.xcframework/Info.plist

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,37 +5,39 @@
55
<key>AvailableLibraries</key>
66
<array>
77
<dict>
8+
<key>BinaryPath</key>
9+
<string>BarcodeScannerFramework.framework/BarcodeScannerFramework</string>
810
<key>DebugSymbolsPath</key>
911
<string>dSYMs</string>
1012
<key>LibraryIdentifier</key>
11-
<string>ios-arm64_armv7</string>
13+
<string>ios-arm64_x86_64-simulator</string>
1214
<key>LibraryPath</key>
1315
<string>BarcodeScannerFramework.framework</string>
1416
<key>SupportedArchitectures</key>
1517
<array>
1618
<string>arm64</string>
17-
<string>armv7</string>
19+
<string>x86_64</string>
1820
</array>
1921
<key>SupportedPlatform</key>
2022
<string>ios</string>
23+
<key>SupportedPlatformVariant</key>
24+
<string>simulator</string>
2125
</dict>
2226
<dict>
27+
<key>BinaryPath</key>
28+
<string>BarcodeScannerFramework.framework/BarcodeScannerFramework</string>
2329
<key>DebugSymbolsPath</key>
2430
<string>dSYMs</string>
2531
<key>LibraryIdentifier</key>
26-
<string>ios-arm64_i386_x86_64-simulator</string>
32+
<string>ios-arm64</string>
2733
<key>LibraryPath</key>
2834
<string>BarcodeScannerFramework.framework</string>
2935
<key>SupportedArchitectures</key>
3036
<array>
3137
<string>arm64</string>
32-
<string>i386</string>
33-
<string>x86_64</string>
3438
</array>
3539
<key>SupportedPlatform</key>
3640
<string>ios</string>
37-
<key>SupportedPlatformVariant</key>
38-
<string>simulator</string>
3941
</dict>
4042
</array>
4143
<key>CFBundlePackageType</key>

0 commit comments

Comments
 (0)