Proyectos de Subversion Android Microlearning - Inconcert

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 gabriel 1
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
buildscript {
3
    repositories {
4
        mavenCentral()
5
        google()
6
        jcenter()
7
    }
8
    dependencies {
9
        classpath 'com.android.tools.build:gradle:7.1.2'
10
        /*classpath 'com.android.tools.build:gradle:4.2.0'*/
11
        classpath 'com.google.gms:google-services:4.3.10'
12
 
13
 
14
 
15
 
16
        // Add the Crashlytics Gradle plugin (be sure to add version
17
        // 2.0.0 or later if you built your app with Android Studio 4.1).
18
        classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.1'
19
 
20
 
21
        classpath 'com.google.firebase:perf-plugin:1.4.1'
22
 
23
        // NOTE: Do not place your application dependencies here; they belong
24
        // in the individual module build.gradle files
25
    }
26
}
27
 
28
allprojects {
29
    repositories {
30
        mavenCentral()
31
        google()
32
        jcenter()
33
        maven { url 'https://jitpack.io' }
34
 
35
    }
36
 
37
    tasks.withType(JavaCompile) {
38
        options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
39
    }
40
}
41
 
42
task clean(type: Delete) {
43
    delete rootProject.buildDir
44
}