Getting started - LOMENT-SDK/sdk-cashew-android GitHub Wiki

Getting Started

This document details the process of integrating the Loment Cashew SDK with your mobile application. Before you get started, you have to get your partner ID from your account manager for SAAS integration or network constants for on-premise customers. Please email [email protected] to get onboard.

SDK Integration

Modify your project's build.gradle file to include the maven repository where the SDK resides.

maven { 
    url 'https://github.com/LOMENT-SDK/maven-repository/raw/master/' 
}

Next add the compile line to your app's build.gradle file.

compile 'loment:cashew-android-sdk:2.2.0'

Requirements

  • Android SDK 4.0.3+
  • Android Studio 2.1+

Integration Steps

  • Fill the values for the Keys with appropriate Url's in app manifest.
<meta-data android:name="server_url" android:value="" />
<meta-data android:name="amqp_request_server_url" android:value="" />
<meta-data android:name="amqp_response_server_url" android:value="" />
<meta-data android:name="amqp_message_server_url" android:value="" />
<meta-data android:name="attachment_upload_download_url" android:value=""/>
  • Once the above steps are done, you are authorized to use the framework and its related functionality
  • In case of any queries or support please contact Loment team for support at [email protected]