Proyectos de Subversion LeadersLinked - Android

Rev

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

Rev Autor Línea Nro. Línea
1 efrain 1
apply plugin: 'com.android.application'
2
apply plugin: 'com.google.gms.google-services'  // Google Services plugin
3
 
4
android {
5
    compileSdk 33
6
 
7
    defaultConfig {
8
        applicationId "com.cesams.leaderslinked"
9
        minSdkVersion 21
10
        targetSdk 33
2 efrain 11
        versionCode 15
12
        versionName '1.1.11'
1 efrain 13
 
14
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
15
    }
16
 
17
    buildTypes {
18
        release {
19
            minifyEnabled false
20
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
21
        }
22
    }
23
    namespace 'com.cesams.leaderslinked'
24
 
25
}
26
 
27
dependencies {
28
    implementation fileTree(dir: 'libs', include: ['*.jar'])
29
 
30
    implementation 'androidx.appcompat:appcompat:1.6.1'
31
    implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
32
    // Add the Firebase SDK for Google Analytics
33
    implementation 'com.google.firebase:firebase-analytics:21.3.0'
34
 
35
    // Add the SDK for Firebase Cloud Messaging
36
    implementation 'com.google.firebase:firebase-messaging:23.2.1'
37
 
2 efrain 38
    implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
39
 
1 efrain 40
    testImplementation 'junit:junit:4.12'
41
    androidTestImplementation 'androidx.test.ext:junit:1.1.5'
42
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
43
}
44