GoogleMLKit/BarcodeScanning ~> 8.0.0 requires iOS 15.5 (per the Sept 2024
ML Kit release notes). pod install failed with "Specs satisfying the
dependency were found, but they required a higher minimum deployment
target" when the app was set to 15.0.
Co-Authored-By: Claude <noreply@anthropic.com>
- All four IPHONEOS_DEPLOYMENT_TARGET entries in project.pbxproj bumped
from 13.0 to 15.0 to match Podfile's 'platform :ios, 15.0' and
Capacitor 8's minimum. Mismatched target caused Swift compile errors
for iOS-15-only APIs in linked pods.
- Add CapacitorMlkitBarcodeScanning pod to Podfile and the package to
root package.json (already in frontend/package.json). Without this,
cap sync never linked the pod and the build failed with
'No such module CapacitorMLKitBarcodeScanning'.
Co-Authored-By: Claude <noreply@anthropic.com>