apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "eu.faircode.email"
        minSdkVersion 23
        targetSdkVersion 28
        versionCode 9
        versionName "0.9"
        archivesBaseName = "SafeEmail-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 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:1.0.0-alpha1"
    implementation "androidx.constraintlayout:constraintlayout:1.1.0"
    implementation "androidx.recyclerview:recyclerview:1.0.0-alpha1"
    implementation "com.google.android.material:material:1.0.0-alpha1"
    implementation "androidx.browser:browser:1.0.0-alpha1"

    // 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"

}