ConservadorTrinidad / app / build.gradle
build.gradle
Raw
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 30
    buildToolsVersion "30.0.2"

    defaultConfig {
        applicationId "com.cortesstudios.conservadortrinidad"
        minSdkVersion 23
        targetSdkVersion 30
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled true
            shrinkResources true
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    //-------------------------default-dependences---------------------------
    implementation fileTree(dir: "libs", include: ["*.jar"])
    implementation 'androidx.appcompat:appcompat:1.2.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.0.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.2'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
    implementation 'androidx.fragment:fragment:1.2.4'
    implementation 'androidx.drawerlayout:drawerlayout:1.1.1'

    //-------------------------android-material------------------------------
    implementation 'com.google.android.material:material:1.2.1'
    //-------------------------swipe-refresh-layout--------------------------
    implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
    //-------------------------image-cropper---------------------------------
    implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0'
    //-------------------------clans-fab------------------------------------
    implementation 'com.github.clans:fab:1.6.4'
    //-------------------------JavaMail-------------------------------------
    implementation files('libs/mail.jar')
    implementation files('libs/activation.jar')
    implementation files('libs/additionnal.jar')
    //-------------------------Toasty-------------------------------------
    implementation 'com.github.GrenderG:Toasty:1.5.0'
    //-------------------------StatusView-------------------------------------
    implementation 'com.github.iammert:StatusView:1.3'
    //-----------------------------About Page------------------------------------*
    implementation 'com.github.medyo:android-about-page:1.3.1'
    //-----------------------------Circle ImageView------------------------------------*
    implementation 'de.hdodenhof:circleimageview:3.0.0'



}