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 18:32:49 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d1b09a356b2165753dd9d6328f3e4d80bf130a9e
d1b09a35
1 parent
7edd1877
bump version
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
15 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 @
d1b09a3
## NEXT
## 5.2.4
*
[
iOS
]
iOS 15.5.0 is now the minimum supported iOS version.
Improvements:
*
[
iOS
]
Updates MLkit to the latest release.
*
[
MacOS
]
Added the corners and size information to barcode results.
*
[
MacOS
]
Added support for
`analyzeImage`
.
*
[
MacOS
]
Added a Privacy Manifest.
...
...
example/ios/Flutter/AppFrameworkInfo.plist
View file @
d1b09a3
...
...
@@ -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 @
d1b09a3
# 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 @
d1b09a3
...
...
@@ -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 @
d1b09a3
...
...
@@ -4,7 +4,7 @@
#
Pod
::
Spec
.
new
do
|
s
|
s
.
name
=
'mobile_scanner'
s
.
version
=
'5.2.
3
'
s
.
version
=
'5.2.
4
'
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 @
d1b09a3
...
...
@@ -4,7 +4,7 @@
#
Pod
::
Spec
.
new
do
|
s
|
s
.
name
=
'mobile_scanner'
s
.
version
=
'5.2.
3
'
s
.
version
=
'5.2.
4
'
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 @
d1b09a3
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
:
5.2.
4
repository
:
https://github.com/juliansteenbakker/mobile_scanner
screenshots
:
...
...
Please
register
or
login
to post a comment