Skip to content
Merged
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 1.0.3
- Updated iOS dependencies to resolve version conflicts with Firebase and Google Sign-In
- Updated GoogleMLKit/TextRecognition to version ~> 3.2.0 for better compatibility
- Updated minimum iOS deployment target to 12.0 in podspec to match README requirements
- Improved iOS simulator architecture support for Apple Silicon Macs

## 1.0.2
- upgraded gradle versions and compatibility versions to support newer versions of dart & flutter sdk

Expand Down
103 changes: 0 additions & 103 deletions example/ios/Podfile.lock

This file was deleted.

8 changes: 4 additions & 4 deletions ios/card_scanner.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ A new Flutter plugin.
s.source_files = 'Classes/**/*'
s.resources = 'Assets/*.png'
s.dependency 'Flutter'
s.dependency 'GoogleMLKit/TextRecognition'
s.platform = :ios, '10.0'
s.dependency 'GoogleMLKit/TextRecognition', '~> 3.2.0'
s.platform = :ios, '12.0'
s.static_framework = true

# Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
# Flutter.framework supports both x86_64 and arm64 simulators.
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
s.swift_version = '5.0'
end
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: card_scanner
description: Fast, Accurate and Secure Credit & Debit card scanning library for flutter.
version: 1.0.2
version: 1.0.3
homepage: https://github.com/nateshmbhat/card-scanner-flutter
repository: https://github.com/nateshmbhat/card-scanner-flutter

Expand Down