mirror of https://github.com/M66B/FairEmail.git
110 lines
3.8 KiB
Groovy
110 lines
3.8 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
defaultConfig {
|
|
applicationId "eu.faircode.email"
|
|
minSdkVersion 23
|
|
targetSdkVersion 28
|
|
versionCode 34
|
|
versionName "0.34"
|
|
archivesBaseName = "FairEmail-v$versionName"
|
|
|
|
javaCompileOptions {
|
|
annotationProcessorOptions {
|
|
arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
|
|
}
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
debuggable = false
|
|
minifyEnabled = true
|
|
useProguard = true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
debug {
|
|
debuggable = false // Workaround profiler bug
|
|
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'])
|
|
|
|
// https://mvnrepository.com/artifact/androidx.appcompat/appcompat
|
|
// https://mvnrepository.com/artifact/androidx.recyclerview/recyclerview
|
|
// https://mvnrepository.com/artifact/com.google.android.material/material
|
|
// https://mvnrepository.com/artifact/androidx.browser/browser
|
|
// https://mvnrepository.com/artifact/androidx.constraintlayout/constraintlayout
|
|
|
|
// https://mvnrepository.com/artifact/androidx.lifecycle/lifecycle-runtime
|
|
// https://mvnrepository.com/artifact/androidx.room/room-runtime
|
|
// https://mvnrepository.com/artifact/androidx.paging/paging-runtime
|
|
|
|
// https://developer.android.com/google/play/billing/billing_library_releases_notes
|
|
|
|
// https://javaee.github.io/javamail/
|
|
// https://jsoup.org/
|
|
// http://www.freeutils.net/source/jcharset/
|
|
|
|
// https://developer.android.com/topic/libraries/support-library/androidx-rn
|
|
// https://developer.android.com/topic/libraries/support-library/refactor
|
|
|
|
// https://developer.android.com/topic/libraries/architecture/adding-components.html
|
|
// https://developer.android.com/jetpack/docs/release-notes
|
|
|
|
// https://github.com/open-keychain/openpgp-api
|
|
|
|
def androidx_version = "1.0.0-rc01"
|
|
def constraintlayout_version = "1.1.2"
|
|
def lifecycle_version = "2.0.0-rc01"
|
|
def room_version = "2.0.0-rc01"
|
|
def paging_version = "2.0.0-rc01"
|
|
def billingclient_version = "1.1"
|
|
def javamail_version = "1.6.0"
|
|
def jsoup_version = "1.11.3"
|
|
def jcharset_version = "2.0"
|
|
def openpgp_version = "12.0"
|
|
|
|
implementation "androidx.appcompat:appcompat:$androidx_version"
|
|
implementation "androidx.recyclerview:recyclerview:$androidx_version"
|
|
implementation "com.google.android.material:material:$androidx_version"
|
|
implementation "androidx.browser:browser:$androidx_version"
|
|
implementation "androidx.constraintlayout:constraintlayout:$constraintlayout_version"
|
|
|
|
implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version"
|
|
annotationProcessor "androidx.lifecycle:lifecycle-compiler:$lifecycle_version"
|
|
|
|
implementation "androidx.room:room-runtime:$room_version"
|
|
annotationProcessor "androidx.room:room-compiler:$room_version"
|
|
|
|
implementation "androidx.paging:paging-runtime:$paging_version"
|
|
|
|
implementation "com.android.billingclient:billing:$billingclient_version"
|
|
|
|
implementation "com.sun.mail:android-mail:$javamail_version"
|
|
implementation "com.sun.mail:android-activation:$javamail_version"
|
|
|
|
implementation "org.jsoup:jsoup:$jsoup_version"
|
|
|
|
implementation "net.freeutils:jcharset:$jcharset_version"
|
|
|
|
implementation "org.sufficientlysecure:openpgp-api:$openpgp_version"
|
|
}
|