Skip to main content
Version: 1.1.0

πŸ“¦ 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.

Internal AZEOO teams

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/):

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

  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)2 release(s) β€” latest: 1.1.1
React NativeDownload .tgz or Bitbucket2 release(s) β€” latest: 1.1.1 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

Available binaries are scanned from static/downloads/ at build time (npm run sync-downloads).