Android Installation

Requirements:

  • minSdkVersion: 21 or higher.
  • targetSdkVersion: 31 or higher

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'
}

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

repositories {
  ...
  mavenCentral()
}