Proyectos de Subversion Android Microlearning - Nuevo Interface

Rev

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

Rev 2 Rev 3
Línea 14... Línea 14...
14
 
14
 
15
    defaultConfig {
15
    defaultConfig {
16
        applicationId "com.cesams.twogetskills"
16
        applicationId "com.cesams.twogetskills"
17
        minSdkVersion 26
17
        minSdkVersion 26
18
        targetSdkVersion 31
18
        targetSdkVersion 31
19
        versionCode 90
19
        versionCode 98
20
        versionName '1.0.90'
20
        versionName '1.0.98'
21
        multiDexEnabled true
21
        multiDexEnabled true
22
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
22
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Línea 23... Línea 23...
23
    }
23
    }
Línea 34... Línea 34...
34
    }
34
    }
35
}
35
}
Línea 36... Línea 36...
36
 
36
 
37
dependencies {
37
dependencies {
38
    implementation 'androidx.appcompat:appcompat:1.4.1'
38
    implementation 'androidx.appcompat:appcompat:1.4.1'
39
    implementation 'com.google.android.material:material:1.5.0'
39
    implementation 'com.google.android.material:material:1.6.0'
40
    implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
40
    implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
41
    implementation 'androidx.navigation:navigation-fragment:2.3.5'
41
    implementation 'androidx.navigation:navigation-fragment:2.4.2'
42
    implementation "androidx.multidex:multidex:2.0.1"
42
    implementation "androidx.multidex:multidex:2.0.1"
43
    implementation 'androidx.work:work-runtime:2.8.0-alpha02'
-
 
-
 
43
    implementation 'androidx.work:work-runtime:2.8.0-alpha02'
Línea 44... Línea 44...
44
    implementation 'com.squareup.picasso:picasso:2.71828'
44
 
45
 
45
 
46
    implementation 'androidx.cardview:cardview:1.0.0'
46
    implementation 'androidx.cardview:cardview:1.0.0'
47
    implementation 'androidx.recyclerview:recyclerview:1.2.1'
47
    implementation 'androidx.recyclerview:recyclerview:1.2.1'
Línea 57... Línea 57...
57
    implementation 'com.squareup.okhttp3:okhttp:3.10.0'
57
    implementation 'com.squareup.okhttp3:okhttp:3.10.0'
58
    implementation 'com.squareup.okhttp3:okhttp-urlconnection:3.10.0'
58
    implementation 'com.squareup.okhttp3:okhttp-urlconnection:3.10.0'
59
    implementation 'com.squareup.okhttp3:logging-interceptor:3.10.0'
59
    implementation 'com.squareup.okhttp3:logging-interceptor:3.10.0'
60
    // Import the BoM for the Firebase platform
60
    // Import the BoM for the Firebase platform
61
    //implementation platform('com.google.firebase:firebase-bom:26.2.0')
61
    //implementation platform('com.google.firebase:firebase-bom:26.2.0')
62
    implementation 'com.google.firebase:firebase-analytics:20.1.2'
62
    implementation 'com.google.firebase:firebase-analytics:21.0.0'
63
    implementation 'com.google.firebase:firebase-messaging:23.0.3'
63
    implementation 'com.google.firebase:firebase-messaging:23.0.4'
64
    implementation 'com.google.firebase:firebase-crashlytics:18.2.10'
64
    implementation 'com.google.firebase:firebase-crashlytics:18.2.10'
65
    implementation 'com.google.firebase:firebase-perf:20.0.6'
65
    implementation 'com.google.firebase:firebase-perf:20.0.6'
66
    implementation 'androidx.navigation:navigation-ui:2.4.2'
66
    implementation 'androidx.navigation:navigation-ui:2.4.2'
Línea 67... Línea 67...
67
 
67
 
Línea 74... Línea 74...
74
    // optional - Test helpers for LiveData
74
    // optional - Test helpers for LiveData
75
    testImplementation "androidx.arch.core:core-testing:2.1.0"
75
    testImplementation "androidx.arch.core:core-testing:2.1.0"
76
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
76
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
77
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
77
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
Línea 78... Línea 78...
78
 
78
 
79
    def lifecycle_version = "2.4.0"
79
    def lifecycle_version = "2.4.1"
Línea 80... Línea 80...
80
    def arch_version = "2.1.0"
80
    def arch_version = "2.1.0"
81
 
81
 
82
    // ViewModel
82
    // ViewModel
Línea 100... Línea 100...
100
    // optional - ProcessLifecycleOwner provides a lifecycle for the whole application process
100
    // optional - ProcessLifecycleOwner provides a lifecycle for the whole application process
101
    implementation "androidx.lifecycle:lifecycle-process:$lifecycle_version"
101
    implementation "androidx.lifecycle:lifecycle-process:$lifecycle_version"
Línea 102... Línea 102...
102
 
102
 
103
    // optional - ReactiveStreams support for LiveData
103
    // optional - ReactiveStreams support for LiveData
104
    implementation "androidx.lifecycle:lifecycle-reactivestreams:$lifecycle_version"
104
    implementation "androidx.lifecycle:lifecycle-reactivestreams:$lifecycle_version"
Línea 105... Línea 105...
105
    implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0'
105
    implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1'
106
 
106
 
Línea 107... Línea 107...
107
    // optional - Test helpers for LiveData
107
    // optional - Test helpers for LiveData
Línea 132... Línea 132...
132
    implementation 'com.wajahatkarim:easyflipviewpager:2.0.1'
132
    implementation 'com.wajahatkarim:easyflipviewpager:2.0.1'
Línea 133... Línea 133...
133
 
133
 
134
 
134
 
135
    def lottieVersion = "4.2.2"
-
 
Línea 136... Línea 135...
136
    implementation "com.airbnb.android:lottie:$lottieVersion"
135
    def lottieVersion = "4.2.2"