Proyectos de Subversion LeadersLinked - Android

Rev

Rev 5 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
buildscript {
3
    repositories {
4
        google()
10 efrain 5
        mavenCentral()
1 efrain 6
    }
10 efrain 7
 
1 efrain 8
    dependencies {
10 efrain 9
        classpath 'com.android.tools.build:gradle:8.13.0'
1 efrain 10
        // Add the following line:
10 efrain 11
        classpath 'com.google.gms:google-services:4.4.3'// Google Services plugin
1 efrain 12
 
13
        // NOTE: Do not place your application dependencies here; they belong
14
        // in the individual module build.gradle files
15
    }
16
}
17
 
18
allprojects {
19
    repositories {
20
        google()
10 efrain 21
        mavenCentral()
1 efrain 22
    }
23
}
24
 
10 efrain 25
tasks.register('clean', Delete) {
1 efrain 26
    delete rootProject.buildDir
27
}
3 efrain 28
 
10 efrain 29
tasks.withType(JavaCompile).configureEach {
3 efrain 30
    options.compilerArgs << "-Xlint:deprecation"
31
}