Proyectos de Subversion LeadersLinked - Android

Rev

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

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