Crash in iOS 15 with Xcode 13
sehaswaran opened this issue · 0 comments
sehaswaran commented
As per Vision Framework iOS
extension VNBarcodeSymbology {
@available(macOS, introduced: 10.13, deprecated: 12.0, renamed: "aztec")
@available(iOS, introduced: 11.0, deprecated: 15.0, renamed: "aztec")
@available(tvOS, introduced: 11.0, deprecated: 15.0, renamed: "aztec")
public static let Aztec: VNBarcodeSymbology
}
Aztec, QR,DataMatrix which are deprecated in iOS 15. so it is crashing with Xcode 13
In Scan.swift file,
processClassification method,
this line of code [.Aztec, .QR, .DataMatrix] is crashing.
It needs to be modified to as renamed names to avoid
[.aztec, .qr, .dataMatrix]