YetAnotherCallBlocker/app/build.gradle

63 lines
2.1 KiB
Groovy

apply plugin: 'com.android.application'
apply plugin: 'org.greenrobot.greendao'
android {
compileSdkVersion 30
defaultConfig {
applicationId "dummydomain.yetanothercallblocker"
minSdkVersion 14
targetSdkVersion 30
versionCode 5150
versionName "0.5.15"
javaCompileOptions {
annotationProcessorOptions {
arguments = [eventBusIndex: 'dummydomain.yetanothercallblocker.EventBusIndex']
}
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
applicationVariants.all { variant ->
variant.resValue "string", "app_id", variant.applicationId
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
disable 'MissingTranslation'
}
}
greendao {
schemaVersion 1
}
dependencies {
def eventbus_version = '3.2.0'
implementation 'org.slf4j:slf4j-api:1.7.30'
runtimeOnly 'com.github.tony19:logback-android:2.0.0'
implementation 'org.conscrypt:conscrypt-android:2.5.2'
//noinspection GradleDependency: 3.12.* is the latest version compatible with Android <5
implementation 'com.squareup.okhttp3:okhttp:3.12.13'
implementation 'com.gitlab.xynngh:LibPhoneNumberInfo:c77bdd2b69'
implementation 'org.apache.commons:commons-csv:1.8'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'androidx.recyclerview:recyclerview-selection:1.1.0'
implementation 'androidx.paging:paging-runtime:2.1.2'
implementation 'com.google.android.material:material:1.3.0'
implementation 'androidx.preference:preference:1.1.1'
implementation 'androidx.work:work-runtime:2.5.0'
implementation 'org.greenrobot:greendao:3.3.0'
implementation "org.greenrobot:eventbus:$eventbus_version"
annotationProcessor "org.greenrobot:eventbus-annotation-processor:$eventbus_version"
}