Skip to main content

Setup an Android Studio Project

Required software

  • Android studio Iguana (2023.2.1) or later
  • android 19+
  • Java 17+

Configure Your Project:

Your project will need to include Trustfactor SDK dependencies in project build.gradle and module build.gradle to be used:

  1. Add the following code to your project build.gradle inside repositories like this:
allprojects {
repositories {

maven {
url 'https://pkgs.dev.azure.com/securityside-dev/ExternalPackages/_packaging/ExternalPackages/maven/v1'
name 'ExternalPackages'
}

}
}
  1. Add the following code to your module build.gradle inside dependencies like this:
dependencies {

implementation 'com.securityside.android:trustfactorsdk:latest.release'

}