2019-03-18 13:25:48 +01:00
|
|
|
apply plugin: 'com.android.application'
|
2020-08-03 23:19:16 +02:00
|
|
|
apply plugin: 'org.greenrobot.greendao'
|
2019-03-18 13:25:48 +01:00
|
|
|
|
|
|
|
android {
|
2021-02-09 17:34:32 +01:00
|
|
|
compileSdkVersion 30
|
2019-03-18 13:25:48 +01:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "dummydomain.yetanothercallblocker"
|
|
|
|
minSdkVersion 14
|
2021-02-09 17:34:32 +01:00
|
|
|
targetSdkVersion 30
|
2021-02-23 11:53:01 +01:00
|
|
|
versionCode 5130
|
|
|
|
versionName "0.5.13"
|
2020-05-06 11:15:34 +02:00
|
|
|
|
|
|
|
javaCompileOptions {
|
|
|
|
annotationProcessorOptions {
|
|
|
|
arguments = [eventBusIndex: 'dummydomain.yetanothercallblocker.EventBusIndex']
|
|
|
|
}
|
|
|
|
}
|
2019-03-18 13:25:48 +01:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2020-10-17 23:48:26 +02:00
|
|
|
applicationVariants.all { variant ->
|
|
|
|
variant.resValue "string", "app_id", variant.applicationId
|
|
|
|
}
|
2019-03-25 12:07:08 +01:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
2019-07-20 19:46:24 +02:00
|
|
|
lintOptions {
|
|
|
|
disable 'MissingTranslation'
|
|
|
|
}
|
2019-03-18 13:25:48 +01:00
|
|
|
}
|
|
|
|
|
2020-08-03 23:19:16 +02:00
|
|
|
greendao {
|
|
|
|
schemaVersion 1
|
|
|
|
}
|
|
|
|
|
2019-03-18 13:25:48 +01:00
|
|
|
dependencies {
|
2020-05-06 11:15:34 +02:00
|
|
|
def eventbus_version = '3.2.0'
|
|
|
|
|
2020-01-16 09:43:08 +01:00
|
|
|
implementation 'org.slf4j:slf4j-api:1.7.30'
|
2020-06-12 17:42:25 +02:00
|
|
|
runtimeOnly 'com.github.tony19:logback-android:2.0.0'
|
2020-09-20 15:29:52 +02:00
|
|
|
implementation 'org.conscrypt:conscrypt-android:2.5.1'
|
2019-10-15 14:44:06 +02:00
|
|
|
//noinspection GradleDependency: 3.12.* is the latest version compatible with Android <5
|
2020-06-02 14:41:17 +02:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp:3.12.12'
|
2020-09-06 16:01:27 +02:00
|
|
|
implementation 'com.gitlab.xynngh:LibPhoneNumberInfo:5b0b9fcbee'
|
2020-08-07 11:23:05 +02:00
|
|
|
implementation 'org.apache.commons:commons-csv:1.8'
|
2019-03-25 12:07:08 +01:00
|
|
|
|
2020-08-08 10:12:56 +02:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
2020-05-05 13:46:25 +02:00
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.1.0'
|
2021-02-09 17:31:25 +01:00
|
|
|
implementation 'androidx.recyclerview:recyclerview-selection:1.1.0'
|
2020-09-29 17:23:51 +02:00
|
|
|
implementation 'androidx.paging:paging-runtime:2.1.2'
|
2021-02-09 17:31:25 +01:00
|
|
|
implementation 'com.google.android.material:material:1.3.0'
|
2020-05-16 17:44:55 +02:00
|
|
|
implementation 'androidx.preference:preference:1.1.1'
|
2021-02-09 17:31:25 +01:00
|
|
|
implementation 'androidx.work:work-runtime:2.5.0'
|
2020-08-03 23:19:16 +02:00
|
|
|
implementation 'org.greenrobot:greendao:3.3.0'
|
2020-05-06 11:15:34 +02:00
|
|
|
implementation "org.greenrobot:eventbus:$eventbus_version"
|
|
|
|
annotationProcessor "org.greenrobot:eventbus-annotation-processor:$eventbus_version"
|
2019-03-18 13:25:48 +01:00
|
|
|
}
|