Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/infomaniak/zebrascansdk
SDK in kotlin for Android that uses Zebra's DataWedge to scan any barcode from Zebra's mobile terminals
https://github.com/infomaniak/zebrascansdk
Last synced: about 2 months ago
JSON representation
SDK in kotlin for Android that uses Zebra's DataWedge to scan any barcode from Zebra's mobile terminals
- Host: GitHub
- URL: https://github.com/infomaniak/zebrascansdk
- Owner: Infomaniak
- License: apache-2.0
- Created: 2023-09-18T16:44:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-16T08:28:39.000Z (8 months ago)
- Last Synced: 2024-11-07T09:52:01.976Z (about 2 months ago)
- Language: Kotlin
- Size: 140 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ZebraScanSDK Documentation
ZebraScanSDK is a library developed by Infomaniak Network SA for Android applications to easily integrate and manage Zebra barcode scanners using DataWedge.
This documentation provides an overview of the library's features, installation instructions, and usage examples.## Installation
To use ZebraScanSDK in your Android project, follow these installation steps:
### Gradle
Add the *Jitpack* repository to your project's `build.gradle` file's `repositories` section:
```gradle
maven { url 'https://jitpack.io' }
```Add the following dependency to your project's `build.gradle` file:
```gradle
implementation 'com.github.infomaniak:ZebraScanSDK:1.0.0'
```Sync your project with Gradle files to make sure the library is downloaded.
## Usage
### Using ZebraScanSDK in Compose
```kotlin
@Composable
fun MyComposable() {
val scannerBinding = rememberScannerBinding(profileName = "MyScannerProfile")ZebraScannerCompose(
scannerBinding = scannerBinding,
onDecodedData = { data ->
// Handle the decoded data
},
onErrorResulted = { error ->
// Handle scanner errors
},
onStatusChanged = { status ->
// Handle scanner status
},
onReceiveDataWedgeVersion = { dataWedgeVersion ->
// Handle DataWedge version
},
)
}
```### Using ZebraScanSDK without Compose
```kotlin
class MyActivity : AppCompatActivity() {
private val zebraScannerBinding: ZebraScannerBinding by lazy {
ZebraScannerBinding(this, "MyScannerProfile")
}override fun onCreate(savedInstanceState: Bundle?) {
zebraScannerBinding.bind(lifecycle = this)// Implement your scanner data and error handling logic here
}
}
```## Example Project
To see ZebraScanSDK in action, you can explore the [ZebraScanSDKDemo](https://github.com/Infomaniak/ZebraScanSDK/tree/main/ZebraScanSDKDemo) project available in the same repository.
This open-source project provides a comprehensive example of how to integrate and use the library in a real-world Android application.## Contributions
We welcome contributions from the developer community. If you would like to contribute to ZebraScanSDK, please do so by creating a pull request.
We appreciate your input in improving the library and making it more user-friendly.## License
```markdown
Infomaniak ZebraScanSDK - Android
Copyright (C) 2023 Infomaniak Network SALicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```