apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "eu.faircode.email"
        minSdkVersion 23
        targetSdkVersion 28
        versionCode 13
        versionName "0.13"
        archivesBaseName = "FairEmail-v$versionName"

        javaCompileOptions {
            annotationProcessorOptions {
                arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
            }
        }
    }

    buildTypes {
        release {
            minifyEnabled = true
            useProguard = true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
        debug {
            minifyEnabled = true
            useProguard = true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    packagingOptions {
        pickFirst 'META-INF/LICENSE.txt'
    }
}

repositories {
    jcenter()
    maven {
        url "https://repo1.maven.org/maven2/"
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])

    def support_version = "1.0.0-alpha1"
    def androidx_version = "2.0.0-alpha1"
    def javamail_version = "1.6.0"
    def jsoup_version = "1.11.3"

    // https://developer.android.com/topic/libraries/support-library/revisions.html
    // https://developer.android.com/topic/libraries/support-library/packages
    // https://developer.android.com/topic/libraries/support-library/refactor
    implementation "androidx.appcompat:appcompat:$support_version"
    implementation "androidx.recyclerview:recyclerview:$support_version"
    implementation "com.google.android.material:material:$support_version"
    implementation "androidx.browser:browser:$support_version"

    implementation "androidx.constraintlayout:constraintlayout:1.1.2"

    // https://developer.android.com/topic/libraries/architecture/adding-components.html
    implementation "androidx.lifecycle:lifecycle-extensions:$androidx_version"
    implementation "androidx.room:room-runtime:$androidx_version"
    implementation "androidx.paging:paging-runtime:$androidx_version"
    annotationProcessor "androidx.lifecycle:lifecycle-compiler:$androidx_version"
    annotationProcessor "androidx.room:room-compiler:$androidx_version"

    // https://javaee.github.io/javamail/
    implementation "com.sun.mail:android-mail:$javamail_version"
    implementation "com.sun.mail:android-activation:$javamail_version"

    // https://jsoup.org/
    implementation "org.jsoup:jsoup:$jsoup_version"

}