π¦ Downloads & install sources
This page is the single place for SDK download links and install sources. JitPack (Android) and public npm (React Native) are not yet available; use the options below.
Android (AAR)β
The Android SDK is distributed as AAR files. Download and use them as a local Maven repository (see Android installation: Local AAR).
Downloadβ
All available releases (drop new {version}.zip files in static/downloads/android/):
You will get a Maven-style layout (e.g. com/azeoo/sdk/1.1.1/sdk-1.1.1.aar). Recommended version: 1.1.1.
implementation("com.azeoo:sdk:1.1.1")
Use it as described in the Android installation guide.
Copy from example/android/app/libs in the monorepo instead of downloading.
React Native (npm package not yet available)β
The React Native SDK is not yet on the public npm registry. You can install via Bitbucket or by downloading the package (.tgz).
Option A: Download package (.tgz)β
All available releases (drop new {REACT_NATIVE_PACKAGE_NAME}-{version}.tgz files in static/downloads/react-native/):
- react-native-azeoo-lib-1.1.1.tgz -
1.1.1- 126 KB (recommended) - react-native-azeoo-lib-1.0.0.tgz -
1.0.0- 60.7 MB
Then install from the downloaded file (replace the version in the path):
# Example: latest recommended (react-native-azeoo-lib-1.1.1.tgz)
yarn add /path/to/react-native-azeoo-lib-<version>.tgz
# or
npm install /path/to/react-native-azeoo-lib-<version>.tgz
Option B: Install from Bitbucketβ
yarn add "https://bitbucket.org/azeoo/react-native-azeoo-lib.git"
# or
npm install "https://bitbucket.org/azeoo/react-native-azeoo-lib.git"
Use the URL from this page (single source): https://bitbucket.org/azeoo/react-native-azeoo-lib.git
If you use authentication, use a URL that includes your credentials or use a .npmrc with a token.
Android: Required Gradle lineβ
On Android you must add this in your app's project-level android/build.gradle (not the app-level one):
apply from: "../node_modules/react-native-azeoo-lib/android/azeoolib-dependencies.gradle"
This configures the local Maven repository and Flutter engine for the native SDK.
iOS (Swift Package Manager)β
Add the package in Xcode:
Package URL: https://bitbucket.org/azeoo/azeoo_sdk_spm
- File β Add Package Dependencies...
- Enter:
https://bitbucket.org/azeoo/azeoo_sdk_spm - Add to your app target.
Summaryβ
| Platform | Source | Link / action |
|---|---|---|
| Android | Local AAR (download) | 2 release(s) β latest: 1.1.1 |
| React Native | Download .tgz or Bitbucket | 2 release(s) β latest: 1.1.1 or install from https://bitbucket.org/azeoo/react-native-azeoo-lib.git + Android Gradle step |
| iOS | SPM | https://bitbucket.org/azeoo/azeoo_sdk_spm |
| Flutter | Pub / Git | See Flutter installation |
Available binaries are scanned from static/downloads/ at build time (npm run sync-downloads).