Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RMET-2758 OSBarcodeLib-Android - Scan barcodes using zxing only #1

Merged
merged 31 commits into from
Nov 8, 2023
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
545b317
feat: initial structure of OSBarcodeLib-Android
alexgerardojacinto Oct 31, 2023
8ab5985
feat: update SDKs, Gradle and Kotlin versions to match MABS 10
alexgerardojacinto Nov 2, 2023
2508b8a
feat: first version of ScanBarcode feature using zxing
alexgerardojacinto Nov 3, 2023
12b101b
feat: add permission request for the camera
alexgerardojacinto Nov 3, 2023
08efb6a
feat: add OSBARCError class for library errors
alexgerardojacinto Nov 6, 2023
8e9c7e5
refactor: include missing parameters in OSBARCScanParameters
alexgerardojacinto Nov 6, 2023
914b50c
feat: properly handle all possible results of scanning feature
alexgerardojacinto Nov 6, 2023
fcfe53d
refactor: multiple refactors
alexgerardojacinto Nov 6, 2023
874837d
refactor: remove unnecessary constants
alexgerardojacinto Nov 6, 2023
cf1c721
feat: setup Azure pipeline for library
alexgerardojacinto Nov 6, 2023
a7a0f22
fix: use java 17 instead of 11
alexgerardojacinto Nov 6, 2023
774694e
fix: remove unused activity
alexgerardojacinto Nov 6, 2023
c9b1242
refactor: remove unnecessary steps
alexgerardojacinto Nov 6, 2023
350488e
refactor: remove unnecessary resources
alexgerardojacinto Nov 6, 2023
b15c4ea
chore: raise lib version to 0.0.2
alexgerardojacinto Nov 6, 2023
228ce2e
fix: remove references to resources from AndroidManifest.xml
alexgerardojacinto Nov 6, 2023
4601e7e
chore: update changelog
alexgerardojacinto Nov 6, 2023
9874dc6
chore: raise lib version to 0.0.3
alexgerardojacinto Nov 6, 2023
3013f56
chore: raise java-version to use 17 instead of 11.
alexgerardojacinto Nov 6, 2023
73e9d22
chore: set sonar.projectKey
alexgerardojacinto Nov 6, 2023
0726e83
refactor: include TODO comment
alexgerardojacinto Nov 6, 2023
318cfff
refactor: remove unnecessary fields from AndroidManifest.xml
alexgerardojacinto Nov 6, 2023
b7415d7
misc: comment lines to generate new lib version on Azure
alexgerardojacinto Nov 6, 2023
15ba9b0
refactor: change from TODO to actual comment
alexgerardojacinto Nov 6, 2023
9948474
Finish initialisation by running the generator script.
alexgerardojacinto Nov 6, 2023
afa9a8f
chore: remove unnecessary test file
alexgerardojacinto Nov 6, 2023
7437aa8
misc: remove comments
alexgerardojacinto Nov 6, 2023
4724ab6
chore: update action versions for GitHub action YAML
alexgerardojacinto Nov 6, 2023
9e5f4bd
chore: set files to be excluded from test coverage and code duplication
alexgerardojacinto Nov 6, 2023
a34fd17
chore: include missing file in excluded files list
alexgerardojacinto Nov 6, 2023
3bd7a41
chore: include missing file in excluded files list
alexgerardojacinto Nov 6, 2023
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
Prev Previous commit
Next Next commit
refactor: include missing parameters in OSBARCScanParameters
  • Loading branch information
alexgerardojacinto committed Nov 6, 2023
commit 8e9c7e54ebd7b9bd6049e605681b181c5b8b0e89
Original file line number Diff line number Diff line change
@@ -5,6 +5,7 @@ data class OSBARCScanParameters(
val cameraDirection: Int?,
val scanOrientation: Int?,
val scanButton: Boolean?,
val scanButtonText: String?,
val scanningLibrary: String?
val scanText: String?,
val hint: Int?,
val androidScanningLibrary: String?
)