2019-01-12 13:10:02 +01:00
|
|
|
apply plugin: 'com.android.application'
|
2019-09-14 12:56:10 +02:00
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
apply plugin: 'kotlin-android'
|
2019-09-19 10:39:15 +02:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2019-01-12 13:10:02 +01:00
|
|
|
|
|
|
|
android {
|
2019-11-01 18:39:04 +01:00
|
|
|
compileSdkVersion 29
|
2019-01-12 13:10:02 +01:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.readrops.app"
|
|
|
|
minSdkVersion 21
|
2019-11-01 18:39:04 +01:00
|
|
|
targetSdkVersion 29
|
2019-10-06 14:06:37 +02:00
|
|
|
versionCode 5
|
|
|
|
versionName "1.0.2.2"
|
2019-05-10 13:24:02 +02:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2019-10-19 11:39:21 +02:00
|
|
|
|
|
|
|
javaCompileOptions {
|
|
|
|
annotationProcessorOptions {
|
|
|
|
arguments = [
|
2019-11-01 18:39:04 +01:00
|
|
|
"room.incremental": "true"
|
|
|
|
]
|
2019-10-19 11:39:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-12 13:10:02 +01:00
|
|
|
}
|
2019-10-11 21:27:51 +02:00
|
|
|
testOptions {
|
|
|
|
unitTests.returnDefaultValues = true
|
|
|
|
}
|
2019-01-12 13:10:02 +01:00
|
|
|
buildTypes {
|
|
|
|
release {
|
2019-11-24 16:55:20 +01:00
|
|
|
minifyEnabled true
|
|
|
|
shrinkResources true
|
2019-09-18 22:14:00 +02:00
|
|
|
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
|
|
|
|
debug {
|
2019-01-12 13:10:02 +01:00
|
|
|
minifyEnabled false
|
2019-09-18 22:14:00 +02:00
|
|
|
shrinkResources false
|
|
|
|
|
|
|
|
applicationIdSuffix ".debug"
|
2019-01-12 13:10:02 +01:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2019-01-12 16:54:27 +01:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility = '1.8'
|
|
|
|
targetCompatibility = '1.8'
|
|
|
|
}
|
2019-05-10 12:09:09 +02:00
|
|
|
dataBinding {
|
|
|
|
enabled = true
|
|
|
|
}
|
2019-01-12 13:10:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2019-01-12 16:54:27 +01:00
|
|
|
implementation project(':readropslibrary')
|
|
|
|
|
2019-09-19 10:39:15 +02:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
2019-05-10 13:24:02 +02:00
|
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
|
|
implementation 'androidx.palette:palette:1.0.0'
|
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.0.0'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
2019-07-13 13:13:12 +02:00
|
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
2019-09-19 10:39:15 +02:00
|
|
|
implementation 'androidx.preference:preference:1.1.0'
|
2019-07-30 15:42:42 +02:00
|
|
|
|
2019-01-12 13:10:02 +01:00
|
|
|
testImplementation 'junit:junit:4.12'
|
2019-07-20 16:46:59 +02:00
|
|
|
androidTestImplementation 'androidx.test:runner:1.2.0'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
2019-01-12 15:07:04 +01:00
|
|
|
|
2019-09-19 10:39:15 +02:00
|
|
|
implementation 'com.github.bumptech.glide:glide:4.10.0'
|
|
|
|
kapt 'com.github.bumptech.glide:compiler:4.10.0'
|
|
|
|
implementation 'com.github.bumptech.glide:okhttp3-integration:4.10.0'
|
|
|
|
implementation('com.github.bumptech.glide:recyclerview-integration:4.10.0') {
|
2019-01-31 20:32:56 +01:00
|
|
|
// Excludes the support library because it's already included by Glide.
|
|
|
|
transitive = false
|
|
|
|
}
|
2019-01-15 19:43:25 +01:00
|
|
|
|
2019-09-19 10:39:15 +02:00
|
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
|
2019-09-19 11:20:41 +02:00
|
|
|
kapt 'androidx.lifecycle:lifecycle-common-java8:2.1.0'
|
2019-08-22 21:19:50 +02:00
|
|
|
|
2019-11-01 18:25:44 +01:00
|
|
|
implementation 'androidx.room:room-runtime:2.2.1'
|
|
|
|
kapt 'androidx.room:room-compiler:2.2.1'
|
|
|
|
implementation 'androidx.room:room-rxjava2:2.2.1'
|
2019-08-22 21:19:50 +02:00
|
|
|
|
2019-05-10 13:24:02 +02:00
|
|
|
implementation 'androidx.paging:paging-runtime:2.1.0'
|
|
|
|
implementation 'androidx.paging:paging-common:2.1.0'
|
2019-04-20 13:16:25 +02:00
|
|
|
|
2019-09-19 10:39:15 +02:00
|
|
|
implementation 'joda-time:joda-time:2.10.3'
|
|
|
|
implementation 'org.jsoup:jsoup:1.12.1'
|
2019-01-26 16:35:22 +01:00
|
|
|
|
2019-02-19 12:02:50 +01:00
|
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
|
2019-02-21 16:01:14 +01:00
|
|
|
|
|
|
|
implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
|
2019-02-23 18:13:10 +01:00
|
|
|
|
2019-07-20 16:46:59 +02:00
|
|
|
implementation 'com.mikepenz:fastadapter:3.3.1'
|
|
|
|
implementation 'com.mikepenz:fastadapter-commons:3.3.0'
|
|
|
|
implementation 'com.mikepenz:materialdrawer:6.1.2'
|
2019-08-18 13:07:59 +02:00
|
|
|
|
|
|
|
implementation 'com.facebook.stetho:stetho:1.5.1'
|
2019-09-14 12:56:10 +02:00
|
|
|
|
|
|
|
implementation "androidx.core:core-ktx:1.1.0"
|
2019-09-22 18:18:20 +02:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
2019-09-27 22:18:12 +02:00
|
|
|
|
|
|
|
implementation "com.mikepenz:aboutlibraries:6.2.3"
|
2019-01-12 13:10:02 +01:00
|
|
|
}
|