Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/react-native-vision-camera-barcode-scanner/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ VisionCamera Barcode Scanner depends on VisionCamera Core.
# Make sure VisionCamera Core is installed.
```

## Minimum Requirements

The `GoogleMLKit/BarcodeScanning` dependency (version `8.0.0`) requires a minimum iOS target version of 15.5. Adjust in your `Podfile` if needed.

Then, update your native project:

```sh
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Pod::Spec.new do |s|
s.license = package["license"]
s.authors = package["author"]

s.platforms = { :ios => min_ios_version_supported, :visionos => 1.0 }
s.platforms = { :ios => 15.5, :visionos => 1.0 }
s.source = { :git => "https://github.com/mrousavy/nitro.git", :tag => "#{s.version}" }

s.source_files = [
Expand Down