Android Installation

Requirements:

  • minSdkVersion: 21 or higher.
  • targetSdkVersion: 31

Latest Stable Version

Maven Central

Please see the Release Notes for more details

Add IDWise SDK dependency

To use IDWise SDK you need to add the following sections to the app level build.gradle file

android {  
  ...  
  defaultConfig {  
    ...  
    multiDexEnabled true  
  }

  buildFeatures {  
    ...
    dataBinding true  
  }  
}

Add the following dependency inside your dependencies section in the app level build.gradle file:

dependencies {
  ...
  implementation 'com.idwise:android-sdk:<VERSION>'
}

Replace <VERSION> placeholder above with the current version of IDWise Android SDK. Please refer to Android SDK Release Notes to check the latest version of Android SDK.

IDWise Android SDK is hosted on Maven Central Repository which is usually added in the project by default. Please double-check it is added and if not please add the Maven Central Repository as follows:

repositories {
  ...
  mavenCentral()
}

Next Steps

  • To start with the IDWise Standard SDK, click here.