Android SDK Installation
  • 01 Mar 2023
  • 1 Minute to read
  • Dark
    Light

Android SDK Installation

  • Dark
    Light

Article Summary

Before you start
Make sure you meet the Basic Android requirements


1. Setup credentials for Sency's Maven repository

In settings.gradle add the url and your credentials:

repositories {
        google()
        mavenCentral()
        maven {
            url 'https://sency.jfrog.io/artifactory/sencymotion/'
            credentials {
                username = "yourusername"
                password = "yourpassword"
            }
        }
    }


Now all you have to do is sync the project and you are ready to go with SencyMotionLib installed in your project!



Was this article helpful?