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
Julian Steenbakker
2023-02-09 17:06:44 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ec94f6dea5fbd16c9645f6742d186a7a52f204a3
ec94f6de
1 parent
57459aed
release of v3.0.0
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
18 additions
and
10 deletions
CHANGELOG.md
example/ios/Runner.xcodeproj/project.pbxproj
example/ios/Runner/Info.plist
example/macos/Podfile
macos/mobile_scanner.podspec
pubspec.yaml
CHANGELOG.md
View file @
ec94f6d
## Next
## 3.0.0
This big release contains all improvements from the beta releases.
In addition to that, this release contains:
Improvements:
*
[
Web
]
Automatically inject js libraries
*
Fixed an issue in which the scanner would freeze if two scanner widgets where placed in a page view,
and the paged was swiped. An example has been added in the example app.
You need to set startDelay: true if used in a page view.
*
[
Web
]
Automatically inject js libraries.
*
[
macOS
]
The minimum build version is now macOS 10.14 in according to the latest Flutter version.
*
[
Android
]
Fixed an issue in which the scanWindow would remain even after disposing the scanner.
*
Updated dependencies.
## 3.0.0-beta.4
Fixes:
...
...
example/ios/Runner.xcodeproj/project.pbxproj
View file @
ec94f6d
...
...
@@ -366,7 +366,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = dev.steenbakker.mobileScanner;
PRODUCT_BUNDLE_IDENTIFIER = dev.steenbakker.mobileScanner
Example
;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
...
...
@@ -498,7 +498,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = dev.steenbakker.mobileScanner;
PRODUCT_BUNDLE_IDENTIFIER = dev.steenbakker.mobileScanner
Example
;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
...
...
@@ -524,7 +524,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = dev.steenbakker.mobileScanner;
PRODUCT_BUNDLE_IDENTIFIER = dev.steenbakker.mobileScanner
Example
;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
...
...
example/ios/Runner/Info.plist
View file @
ec94f6d
...
...
@@ -30,6 +30,8 @@
<string>
We use the camera to scan barcodes
</string>
<key>
NSPhotoLibraryUsageDescription
</key>
<string>
We need access in order to open photos of barcodes
</string>
<key>
UIApplicationSupportsIndirectInputEvents
</key>
<true/>
<key>
UILaunchStoryboardName
</key>
<string>
LaunchScreen
</string>
<key>
UIMainStoryboardFile
</key>
...
...
@@ -49,7 +51,5 @@
</array>
<key>
UIViewControllerBasedStatusBarAppearance
</key>
<false/>
<key>
UIApplicationSupportsIndirectInputEvents
</key>
<true/>
</dict>
</plist>
...
...
example/macos/Podfile
View file @
ec94f6d
...
...
@@ -37,7 +37,7 @@ post_install do |installer|
installer
.
pods_project
.
targets
.
each
do
|
target
|
flutter_additional_macos_build_settings
(
target
)
target
.
build_configurations
.
each
do
|
config
|
config
.
build_settings
[
'MACOSX_DEPLOYMENT_TARGET'
]
=
'10.1
3
'
config
.
build_settings
[
'MACOSX_DEPLOYMENT_TARGET'
]
=
'10.1
4
'
end
end
end
...
...
macos/mobile_scanner.podspec
View file @
ec94f6d
...
...
@@ -15,7 +15,7 @@ An universal scanner for Flutter based on MLKit.
s
.
source
=
{
:path
=>
'.'
}
s
.
source_files
=
'Classes/**/*'
s
.
dependency
'FlutterMacOS'
s
.
platform
=
:osx
,
'10.1
3
'
s
.
platform
=
:osx
,
'10.1
4
'
s
.
pod_target_xcconfig
=
{
'DEFINES_MODULE'
=>
'YES'
}
s
.
swift_version
=
'5.0'
end
...
...
pubspec.yaml
View file @
ec94f6d
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
:
3.0.0
-beta.4
version
:
3.0.0
repository
:
https://github.com/juliansteenbakker/mobile_scanner
environment
:
...
...
Please
register
or
login
to post a comment