1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // 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.0.0'
- 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/nexilis-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
- }
|