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
2025-04-18 14:05:57 +0200
Browse Files
Options
Browse Files
Download
Plain Diff
Committed by
GitHub
2025-04-18 14:05:57 +0200
Commit
1734a4387c8a9395b5308fd4ec86a20fa72a19c6
1734a438
2 parents
594b5837
b8fcb270
Merge branch 'master' into hotfix/usage-after-dispose
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
7 deletions
.gitignore
CHANGELOG.md
android/build.gradle
example/android/.gitignore
example/android/app/build.gradle
pubspec.yaml
.gitignore
View file @
1734a43
...
...
@@ -104,6 +104,10 @@ unlinked_spec.ds
**/macos/Flutter/GeneratedPluginRegistrant.swift
**/macos/Flutter/ephemeral
# Swift Package Manager related
.build/
.swiftpm/
# Coverage
coverage/
...
...
CHANGELOG.md
View file @
1734a43
## 6.0.8
Improvements:
*
[
Android
]
Remove the dependency on
`org.jetbrains.kotlin:kotlin-bom`
.
## 6.0.7
Improvements:
*
[
Android
]
Updated bundled barcode scanning library to v17.3.0
...
...
android/build.gradle
View file @
1734a43
...
...
@@ -73,10 +73,6 @@ dependencies {
implementation
'com.google.mlkit:barcode-scanning:17.3.0'
}
// org.jetbrains.kotlin:kotlin-bom artifact purpose is to align kotlin stdlib and related code versions.
// See: https://youtrack.jetbrains.com/issue/KT-55297/kotlin-stdlib-should-declare-constraints-on-kotlin-stdlib-jdk8-and-kotlin-stdlib-jdk7
implementation
(
platform
(
"org.jetbrains.kotlin:kotlin-bom:1.8.22"
))
implementation
'androidx.camera:camera-lifecycle:1.3.4'
implementation
'androidx.camera:camera-camera2:1.3.4'
implementation
'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3'
...
...
example/android/.gitignore
View file @
1734a43
...
...
@@ -11,3 +11,5 @@ GeneratedPluginRegistrant.java
key.properties
**/*.keystore
**/*.jks
**/.cxx
\ No newline at end of file
...
...
example/android/app/build.gradle
View file @
1734a43
...
...
@@ -24,7 +24,8 @@ if (flutterVersionName == null) {
android
{
namespace
"dev.steenbakker.mobile_scanner_example"
compileSdk
34
compileSdk
35
ndkVersion
"26.3.11579264"
compileOptions
{
sourceCompatibility
JavaVersion
.
VERSION_17
...
...
@@ -43,7 +44,7 @@ android {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId
"dev.steenbakker.mobile_scanner_example"
minSdkVersion
24
targetSdkVersion
3
4
targetSdkVersion
3
5
versionCode
flutterVersionCode
.
toInteger
()
versionName
flutterVersionName
}
...
...
pubspec.yaml
View file @
1734a43
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
:
6.0.
7
version
:
6.0.
8
repository
:
https://github.com/juliansteenbakker/mobile_scanner
screenshots
:
...
...
Please
register
or
login
to post a comment