Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
mobile_scanner
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Navaron Bracke
2024-10-07 20:17:48 +0200
Browse Files
Options
Browse Files
Download
Plain Diff
Committed by
GitHub
2024-10-07 20:17:48 +0200
Commit
02e4c66eb645ccfd8072cfcf12f66d3274e1f569
02e4c66e
2 parents
7edd1877
04ca3993
Merge pull request #1206 from navaronbracke/mlkit_deps
fix: bump MLKit to 7.0.0
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
18 additions
and
12 deletions
CHANGELOG.md
example/ios/Flutter/AppFrameworkInfo.plist
example/ios/Podfile
example/ios/Runner.xcodeproj/project.pbxproj
ios/mobile_scanner.podspec
macos/mobile_scanner.podspec
pubspec.yaml
CHANGELOG.md
View file @
02e4c66
## NEXT
## 6.0.0
**BREAKING CHANGES:**
*
[
iOS
]
iOS 15.5.0 is now the minimum supported iOS version.
*
[
iOS
]
Updates MLKit to version 7.0.0.
*
[
iOS
]
Updates the minimum supported XCode version to 15.3.0.
Improvements:
*
[
MacOS
]
Added the corners and size information to barcode results.
...
...
example/ios/Flutter/AppFrameworkInfo.plist
View file @
02e4c66
...
...
@@ -21,6 +21,6 @@
<key>
CFBundleVersion
</key>
<string>
1.0
</string>
<key>
MinimumOSVersion
</key>
<string>
1
2
.0
</string>
<string>
1
5.5
.0
</string>
</dict>
</plist>
...
...
example/ios/Podfile
View file @
02e4c66
# Uncomment this line to define a global platform for your project
# platform :ios, '1
2
.0'
# platform :ios, '1
5.5
.0'
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV
[
'COCOAPODS_DISABLE_STATS'
]
=
'true'
...
...
@@ -41,7 +41,7 @@ post_install do |installer|
installer
.
pods_project
.
targets
.
each
do
|
target
|
flutter_additional_ios_build_settings
(
target
)
target
.
build_configurations
.
each
do
|
config
|
config
.
build_settings
[
'IPHONEOS_DEPLOYMENT_TARGET'
]
=
'1
2
.0'
config
.
build_settings
[
'IPHONEOS_DEPLOYMENT_TARGET'
]
=
'1
5.5
.0'
end
end
end
...
...
example/ios/Runner.xcodeproj/project.pbxproj
View file @
02e4c66
...
...
@@ -470,7 +470,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 1
2
.0;
IPHONEOS_DEPLOYMENT_TARGET = 1
5.5
.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SUPPORTED_PLATFORMS = iphoneos;
...
...
@@ -601,7 +601,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 1
2
.0;
IPHONEOS_DEPLOYMENT_TARGET = 1
5.5
.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
...
...
@@ -650,7 +650,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 1
2
.0;
IPHONEOS_DEPLOYMENT_TARGET = 1
5.5
.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SUPPORTED_PLATFORMS = iphoneos;
...
...
ios/mobile_scanner.podspec
View file @
02e4c66
...
...
@@ -4,7 +4,7 @@
#
Pod
::
Spec
.
new
do
|
s
|
s
.
name
=
'mobile_scanner'
s
.
version
=
'
5.2.3
'
s
.
version
=
'
6.0.0
'
s
.
summary
=
'An universal scanner for Flutter based on MLKit.'
s
.
description
=
<<-
DESC
An universal scanner for Flutter based on MLKit.
...
...
@@ -15,8 +15,8 @@ An universal scanner for Flutter based on MLKit.
s
.
source
=
{
:path
=>
'.'
}
s
.
source_files
=
'Classes/**/*'
s
.
dependency
'Flutter'
s
.
dependency
'GoogleMLKit/BarcodeScanning'
,
'~> 6.0.0'
s
.
platform
=
:ios
,
'12.0'
s
.
dependency
'GoogleMLKit/BarcodeScanning'
,
'~> 7.0.0'
s
.
platform
=
:ios
,
'15.5.0'
s
.
static_framework
=
true
# Flutter.framework does not contain a i386 slice.
s
.
pod_target_xcconfig
=
{
'DEFINES_MODULE'
=>
'YES'
,
'EXCLUDED_ARCHS[sdk=iphonesimulator*]'
=>
'i386'
}
...
...
macos/mobile_scanner.podspec
View file @
02e4c66
...
...
@@ -4,7 +4,7 @@
#
Pod
::
Spec
.
new
do
|
s
|
s
.
name
=
'mobile_scanner'
s
.
version
=
'
5.2.3
'
s
.
version
=
'
6.0.0
'
s
.
summary
=
'An universal scanner for Flutter based on MLKit.'
s
.
description
=
<<-
DESC
An universal scanner for Flutter based on MLKit.
...
...
pubspec.yaml
View file @
02e4c66
name
:
mobile_scanner
description
:
A universal barcode and QR code scanner for Flutter based on MLKit. Uses CameraX on Android, AVFoundation on iOS and Apple Vision & AVFoundation on macOS.
version
:
5.2.3
version
:
6.0.0
repository
:
https://github.com/juliansteenbakker/mobile_scanner
screenshots
:
...
...
Please
register
or
login
to post a comment