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β
Download Android SDK AAR (place the unpacked Maven layout in your app or point your project to the folder):
Download Android AAR
You will get a Maven-style layout (e.g. com/azeoo/sdk/{version}/sdk-{version}.aar). Use it as described in the Android installation guide.
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/.zip).
Option A: Download package (.tgz or .zip)β
Download the pre-built package and install it locally (no Bitbucket access needed):
Then install from the downloaded file:
# After downloading the .tgz or .zip
yarn add /path/to/react-native-azeoo-lib-*.tgz
# or
npm install /path/to/react-native-azeoo-lib-*.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) | Download Android AAR |
| React Native | Download .tgz/.zip or Bitbucket | Download package 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 |
All URLs and paths are defined in one place in the docs repo; when they change, only that file is updated.