// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { google() mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:8.7.1' classpath 'com.google.gms:google-services:4.3.15' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } apply from: "variables.gradle" allprojects { repositories { google() mavenCentral() jcenter() // Add the following lines to include the Nexilis repository into your app maven { url "https://nexilis.io/artifactory/ui-uc-api-libs/" credentials { username = "***REPLACE***WITH***YOUR***MAVEN***USERNAME***" password = "***REPLACE***WITH***YOUR***MAVEN***PASSWORD***" } } // Add the following lines to include the Nexilis Security Shield repository into your app maven { url "https://nexilis.io/artifactory/ss-libs/" credentials { username = "**REPLACE*WITH*YOUR*MAVEN*USERNAME**" password = "**REPLACE*WITH*YOUR*MAVEN*PASSWORD**" } } maven { url 'https://maven.google.com' } maven { url 'https://jitpack.io' } } } task clean(type: Delete) { delete rootProject.buildDir }