Diff of /Android/app/build.gradle [000000] .. [9f4ce6]

Switch to unified view

a b/Android/app/build.gradle
1
apply plugin: 'com.android.application'
2
apply plugin: 'com.google.gms.google-services'
3
4
android {
5
    compileSdkVersion 28
6
    defaultConfig {
7
        applicationId "com.medicminds.thebot"
8
        minSdkVersion 21
9
        targetSdkVersion 28
10
        versionCode 1
11
        versionName "1.0"
12
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
13
    }
14
        buildTypes {
15
        release {
16
            minifyEnabled false
17
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
18
        }
19
    }
20
}
21
22
dependencies {
23
    implementation fileTree(include: ['*.jar'], dir: 'libs')
24
    implementation 'androidx.appcompat:appcompat:1.3.0-alpha01'
25
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
26
    implementation 'com.google.android.material:material:1.3.0-alpha02'
27
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
28
    implementation 'com.google.firebase:firebase-auth:19.3.2'
29
    testImplementation 'junit:junit:4.12'
30
    androidTestImplementation 'androidx.test:runner:1.3.0-rc02'
31
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0-rc02'
32
    //borrowed libraries
33
    implementation 'com.github.stfalcon:chatkit:0.3.3'
34
    implementation 'com.github.timigod:android-chat-ui:v0.1.4'
35
36
37
38
39
}