Proyectos de Subversion LeadersLinked - Android

Rev

Rev 5 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

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