Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/datalogic/aladdin-app-sdk
Aladdin app sdk repository
https://github.com/datalogic/aladdin-app-sdk
Last synced: 20 days ago
JSON representation
Aladdin app sdk repository
- Host: GitHub
- URL: https://github.com/datalogic/aladdin-app-sdk
- Owner: datalogic
- License: apache-2.0
- Created: 2022-10-13T12:10:12.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-16T20:34:10.000Z (7 months ago)
- Last Synced: 2024-05-16T21:40:19.106Z (7 months ago)
- Language: Kotlin
- Size: 159 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aladdin-app-sdk
[![Release](https://jitpack.io/v/datalogic/aladdin-app-sdk.svg)](https://jitpack.io/#datalogic/aladdin-app-sdk)SDK repository for Android integration with the [Aladdin](https://github.com/datalogic/aladdin-v2) application.
Follow the steps below to add to your Android project.
1. Add jitpack.io repository to dependency resolution:
```groovy
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' } // add Jitpack
}
}
```
2. Add the dependency:
```groovy
dependencies {
implementation 'com.github.datalogic:aladdin-app-sdk:{latest version}'
}
```