Proyectos de Subversion Android Microlearning - Inconcert

Rev

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

Rev Autor Línea Nro. Línea
1 gabriel 1
//plugins {
2
//    id 'com.android.application'
3
//}
4
 
5
apply plugin: 'com.android.application'
6
apply plugin: 'com.google.gms.google-services'
7
apply plugin: 'com.google.firebase.crashlytics'
8
apply plugin: 'com.google.firebase.firebase-perf'
9
 
10
android {
11
    compileSdkVersion 31
12
    buildToolsVersion '31.0.0'
13
 
14
 
15
    defaultConfig {
16
        applicationId "com.cesams.twogetskills.inconcert"
17
        minSdkVersion 26
18
        targetSdkVersion 31
19 efrain 19
        versionCode 16
20
        versionName '1.0.16'
1 gabriel 21
        multiDexEnabled true
22
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
23
 
24
    }
25
 
26
    buildTypes {
27
        release {
28
            minifyEnabled false
29
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
30
        }
31
    }
32
    compileOptions {
33
        sourceCompatibility JavaVersion.VERSION_1_8
34
        targetCompatibility JavaVersion.VERSION_1_8
35
 
36
    }
37
}
38
 
39
dependencies {
40
    implementation 'androidx.appcompat:appcompat:1.4.1'
41
    implementation 'com.google.android.material:material:1.6.0'
42
    implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
43
    implementation 'androidx.navigation:navigation-fragment:2.4.2'
44
    implementation "androidx.multidex:multidex:2.0.1"
45
    implementation 'androidx.work:work-runtime:2.8.0-alpha02'
46
 
47
    implementation 'io.reactivex:rxjava:1.0.14'
48
 
49
    implementation 'androidx.cardview:cardview:1.0.0'
50
    implementation 'androidx.recyclerview:recyclerview:1.2.1'
51
  //  implementation 'com.codesgood:justifiedtextview:2.0.1'
52
    implementation 'com.google.android.exoplayer:exoplayer:2.12.2'
53
    implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
54
 
55
    implementation 'androidx.multidex:multidex:2.0.1'
56
    implementation 'com.github.barteksc:android-pdf-viewer:2.8.2'
57
    implementation 'pl.hypeapp:materialtimelineview:1.1'
58
    implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
59
 
60
    implementation 'com.squareup.okhttp3:okhttp:3.10.0'
61
    implementation 'com.squareup.okhttp3:okhttp-urlconnection:3.10.0'
62
    implementation 'com.squareup.okhttp3:logging-interceptor:3.10.0'
63
    // Import the BoM for the Firebase platform
64
    //implementation platform('com.google.firebase:firebase-bom:26.2.0')
65
    implementation 'com.google.firebase:firebase-analytics:21.0.0'
66
    implementation 'com.google.firebase:firebase-messaging:23.0.4'
67
    implementation 'com.google.firebase:firebase-crashlytics:18.2.10'
68
    implementation 'com.google.firebase:firebase-perf:20.0.6'
69
    implementation 'androidx.navigation:navigation-ui:2.4.2'
70
 
71
    implementation 'com.github.bumptech.glide:glide:4.11.0'
18 efrain 72
    implementation 'org.apache.commons:commons-lang3:3.12.0'
1 gabriel 73
    annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
74
 
75
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
76
    // Skip this if you don't want to use integration libraries or configure Glide.
77
    annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
78
 
79
    testImplementation 'junit:junit:4.+'
80
    // optional - Test helpers for LiveData
81
    testImplementation "androidx.arch.core:core-testing:2.1.0"
82
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
83
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
84
 
85
    def lifecycle_version = "2.4.1"
86
    def arch_version = "2.1.0"
87
 
88
    // ViewModel
89
    implementation "androidx.lifecycle:lifecycle-viewmodel:$lifecycle_version"
90
    // LiveData
91
    implementation "androidx.lifecycle:lifecycle-livedata:$lifecycle_version"
92
    // Lifecycles only (without ViewModel or LiveData)
93
    implementation "androidx.lifecycle:lifecycle-runtime:$lifecycle_version"
94
 
95
    // Saved state module for ViewModel
96
    implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:$lifecycle_version"
97
 
98
    // Annotation processor
99
    annotationProcessor "androidx.lifecycle:lifecycle-compiler:$lifecycle_version"
100
    // alternately - if using Java8, use the following instead of lifecycle-compiler
101
    implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycle_version"
102
 
103
    // optional - helpers for implementing LifecycleOwner in a Service
104
    implementation "androidx.lifecycle:lifecycle-service:$lifecycle_version"
105
 
106
    // optional - ProcessLifecycleOwner provides a lifecycle for the whole application process
107
    implementation "androidx.lifecycle:lifecycle-process:$lifecycle_version"
108
 
109
    // optional - ReactiveStreams support for LiveData
110
    implementation "androidx.lifecycle:lifecycle-reactivestreams:$lifecycle_version"
111
    implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1'
112
 
113
    // optional - Test helpers for LiveData
114
    testImplementation "androidx.arch.core:core-testing:$arch_version"
115
 
116
    def room_version = "2.3.0"
117
 
118
    implementation "androidx.room:room-runtime:$room_version"
119
    annotationProcessor "androidx.room:room-compiler:$room_version"
120
 
121
    // optional - RxJava2 support for Room
122
    implementation "androidx.room:room-rxjava2:$room_version"
123
 
124
    // optional - RxJava3 support for Room
125
    implementation "androidx.room:room-rxjava3:$room_version"
126
 
127
    // optional - Guava support for Room, including Optional and ListenableFuture
128
    implementation "androidx.room:room-guava:$room_version"
129
 
130
    // optional - Test helpers
131
    testImplementation "androidx.room:room-testing:$room_version"
132
 
133
    // optional - Paging 3 Integration
134
    implementation "androidx.room:room-paging:2.4.0-rc01"
135
 
136
    // ViewPager animation
137
 
138
    implementation 'com.wajahatkarim:easyflipviewpager:2.0.1'
139
 
140
 
141
    def lottieVersion = "4.2.2"
142
    implementation "com.airbnb.android:lottie:$lottieVersion"
143
 
7 gabriel 144
    implementation 'androidx.core:core-splashscreen:1.0.0-rc01'
8 gabriel 145
    implementation "androidx.biometric:biometric:1.1.0"
7 gabriel 146
 
147
 
1 gabriel 148
}