Skip to content

Commit

Permalink
Merge pull request #32 from OutSystems/development
Browse files Browse the repository at this point in the history
RMET-3474 OSBarcodeLib-Android - Prepare to release version `1.1.2`
  • Loading branch information
alexgerardojacinto authored Jun 5, 2024
2 parents bf46532 + bca00e1 commit 7379b57
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

The changes documented here do not include those from the original repository.

## [1.1.2]

### 21-05-2024
- Fix: Adds serializable annotation to avoid problems with code obfuscation (https://outsystemsrd.atlassian.net/browse/RMET-3394).

## [1.1.1]

### 30-04-2024
Expand Down
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ dependencies {
implementation 'androidx.camera:camera-core:1.0.0'
implementation 'com.google.zxing:core:3.4.1'
implementation 'com.google.mlkit:barcode-scanning:17.2.0'
implementation 'com.google.code.gson:gson:2.10.1'

testImplementation "org.mockito:mockito-core:4.3.0"
testImplementation 'org.mockito:mockito-inline:4.3.0'
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.outsystems</groupId>
<artifactId>osbarcode-android</artifactId>
<version>1.1.1</version>
<version>1.1.2</version>
</project>
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
package com.outsystems.plugins.barcode.model

import java.io.Serializable
import com.google.gson.annotations.SerializedName

/**
* Data class that represents the object with the scan parameters.
*/
data class OSBARCScanParameters(
val scanInstructions: String?,
val cameraDirection: Int?,
val scanOrientation: Int?,
val scanButton: Boolean,
val scanText: String,
val hint: Int?,
val androidScanningLibrary: String?
@SerializedName("scanInstructions") val scanInstructions: String?,
@SerializedName("cameraDirection") val cameraDirection: Int?,
@SerializedName("scanOrientation") val scanOrientation: Int?,
@SerializedName("scanButton") val scanButton: Boolean,
@SerializedName("scanText") val scanText: String,
@SerializedName("hint") val hint: Int?,
@SerializedName("androidScanningLibrary") val androidScanningLibrary: String?
) : Serializable

0 comments on commit 7379b57

Please sign in to comment.