2019-01-12 13:10:02 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.readrops.app"
|
|
|
|
minSdkVersion 21
|
|
|
|
targetSdkVersion 28
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
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-01-12 13:10:02 +01:00
|
|
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
2019-01-26 20:03:23 +01:00
|
|
|
implementation 'com.android.support:design:28.0.0'
|
2019-02-01 23:11:27 +01:00
|
|
|
implementation 'com.android.support:cardview-v7:28.0.0'
|
|
|
|
implementation 'com.android.support:palette-v7:28.0.0'
|
|
|
|
implementation 'com.android.support:recyclerview-v7:28.0.0'
|
|
|
|
|
2019-01-12 13:10:02 +01:00
|
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
|
|
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
|
|
|
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
|
2019-01-12 15:07:04 +01:00
|
|
|
|
|
|
|
implementation 'com.github.bumptech.glide:glide:4.8.0'
|
|
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
|
2019-02-03 13:58:36 +01:00
|
|
|
implementation "com.github.bumptech.glide:okhttp3-integration:4.8.0"
|
2019-02-07 19:33:55 +01:00
|
|
|
implementation("com.github.bumptech.glide:recyclerview-integration:4.8.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-02-24 15:21:06 +01:00
|
|
|
implementation 'android.arch.lifecycle:extensions:1.1.1'
|
2019-01-22 23:51:18 +01:00
|
|
|
implementation "android.arch.persistence.room:runtime:1.1.1"
|
|
|
|
annotationProcessor "android.arch.persistence.room:compiler:1.1.1"
|
2019-04-20 13:16:25 +02:00
|
|
|
implementation 'android.arch.paging:runtime:1.0.1'
|
|
|
|
implementation 'android.arch.paging:common:1.0.1'
|
|
|
|
|
2019-01-25 13:23:28 +01:00
|
|
|
|
2019-01-27 16:35:44 +01:00
|
|
|
implementation "joda-time:joda-time:2.9.9"
|
2019-02-01 23:11:27 +01:00
|
|
|
implementation 'org.jsoup:jsoup:1.11.3'
|
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-22 15:42:56 +01:00
|
|
|
implementation 'com.github.clans:fab:1.6.4'
|
2019-02-23 18:13:10 +01:00
|
|
|
|
|
|
|
// fastadapter requires androidx after 3.2.9
|
|
|
|
implementation 'com.mikepenz:fastadapter:3.2.9'
|
|
|
|
implementation 'com.mikepenz:fastadapter-commons:3.2.9'
|
2019-03-29 14:26:25 +01:00
|
|
|
implementation "com.mikepenz:materialdrawer:6.0.9"
|
2019-04-04 15:13:14 +02:00
|
|
|
|
|
|
|
implementation 'org.apache.commons:commons-collections4:4.3'
|
2019-01-12 13:10:02 +01:00
|
|
|
}
|