Proyectos de Subversion Android Microlearning - Inconcert

Rev

Rev 15 | Rev 18 | Ir a la última revisión | | 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
17 gabriel 19
        versionCode 11
20
        versionName '1.0.11'
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'
72
    annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
73
 
74
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
75
    // Skip this if you don't want to use integration libraries or configure Glide.
76
    annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
77
 
78
    testImplementation 'junit:junit:4.+'
79
    // optional - Test helpers for LiveData
80
    testImplementation "androidx.arch.core:core-testing:2.1.0"
81
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
82
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
83
 
84
    def lifecycle_version = "2.4.1"
85
    def arch_version = "2.1.0"
86
 
87
    // ViewModel
88
    implementation "androidx.lifecycle:lifecycle-viewmodel:$lifecycle_version"
89
    // LiveData
90
    implementation "androidx.lifecycle:lifecycle-livedata:$lifecycle_version"
91
    // Lifecycles only (without ViewModel or LiveData)
92
    implementation "androidx.lifecycle:lifecycle-runtime:$lifecycle_version"
93
 
94
    // Saved state module for ViewModel
95
    implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:$lifecycle_version"
96
 
97
    // Annotation processor
98
    annotationProcessor "androidx.lifecycle:lifecycle-compiler:$lifecycle_version"
99
    // alternately - if using Java8, use the following instead of lifecycle-compiler
100
    implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycle_version"
101
 
102
    // optional - helpers for implementing LifecycleOwner in a Service
103
    implementation "androidx.lifecycle:lifecycle-service:$lifecycle_version"
104
 
105
    // optional - ProcessLifecycleOwner provides a lifecycle for the whole application process
106
    implementation "androidx.lifecycle:lifecycle-process:$lifecycle_version"
107
 
108
    // optional - ReactiveStreams support for LiveData
109
    implementation "androidx.lifecycle:lifecycle-reactivestreams:$lifecycle_version"
110
    implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1'
111
 
112
    // optional - Test helpers for LiveData
113
    testImplementation "androidx.arch.core:core-testing:$arch_version"
114
 
115
    def room_version = "2.3.0"
116
 
117
    implementation "androidx.room:room-runtime:$room_version"
118
    annotationProcessor "androidx.room:room-compiler:$room_version"
119
 
120
    // optional - RxJava2 support for Room
121
    implementation "androidx.room:room-rxjava2:$room_version"
122
 
123
    // optional - RxJava3 support for Room
124
    implementation "androidx.room:room-rxjava3:$room_version"
125
 
126
    // optional - Guava support for Room, including Optional and ListenableFuture
127
    implementation "androidx.room:room-guava:$room_version"
128
 
129
    // optional - Test helpers
130
    testImplementation "androidx.room:room-testing:$room_version"
131
 
132
    // optional - Paging 3 Integration
133
    implementation "androidx.room:room-paging:2.4.0-rc01"
134
 
135
    // ViewPager animation
136
 
137
    implementation 'com.wajahatkarim:easyflipviewpager:2.0.1'
138
 
139
 
140
    def lottieVersion = "4.2.2"
141
    implementation "com.airbnb.android:lottie:$lottieVersion"
142
 
7 gabriel 143
    implementation 'androidx.core:core-splashscreen:1.0.0-rc01'
8 gabriel 144
    implementation "androidx.biometric:biometric:1.1.0"
7 gabriel 145
 
146
 
1 gabriel 147
}