Skip to main content

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

  1. File β†’ Add Package Dependencies...
  2. Enter: https://bitbucket.org/azeoo/azeoo_sdk_spm
  3. Add to your app target.

Summary​

PlatformSourceLink / action
AndroidLocal AAR (download)Download Android AAR
React NativeDownload .tgz/.zip or BitbucketDownload package or install from https://bitbucket.org/azeoo/react-native-azeoo-lib.git + Android Gradle step
iOSSPMhttps://bitbucket.org/azeoo/azeoo_sdk_spm
FlutterPub / GitSee Flutter installation

All URLs and paths are defined in one place in the docs repo; when they change, only that file is updated.