Proyectos de Subversion LeadersLinked - Android

Rev

Rev 2 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 2 Rev 3
Línea -... Línea 1...
-
 
1
plugins {
1
apply plugin: 'com.android.application'
2
    id 'com.android.application'
2
apply plugin: 'com.google.gms.google-services'  // Google Services plugin
3
    id 'com.google.gms.google-services'
-
 
4
}
Línea 3... Línea 5...
3
 
5
 
4
android {
6
android {
Línea 5... Línea 7...
5
    compileSdk 33
7
    compileSdk 36
6
 
8
 
7
    defaultConfig {
9
    defaultConfig {
8
        applicationId "com.cesams.leaderslinked"
10
        applicationId "com.cesams.leaderslinked.v2"
9
        minSdkVersion 21
11
        minSdkVersion 21
10
        targetSdk 33
12
        targetSdk 35
Línea 11... Línea 13...
11
        versionCode 15
13
        versionCode 20
12
        versionName '1.1.11'
14
        versionName '1.1.14'
Línea 13... Línea 15...
13
 
15
 
14
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
16
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
15
    }
17
    }
16
 
18
 
17
    buildTypes {
19
    buildTypes {
18
        release {
20
        release {
-
 
21
            minifyEnabled false
-
 
22
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
-
 
23
        }
-
 
24
    }
-
 
25
    buildFeatures {
-
 
26
        buildConfig true
-
 
27
    }
19
            minifyEnabled false
28
    compileOptions {
Línea 20... Línea 29...
20
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
29
        sourceCompatibility JavaVersion.VERSION_17
Línea 21... Línea 30...
21
        }
30
        targetCompatibility JavaVersion.VERSION_17
22
    }
31
    }