mirror of https://github.com/readrops/Readrops.git
73 lines
2.5 KiB
Groovy
73 lines
2.5 KiB
Groovy
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'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = '1.8'
|
|
targetCompatibility = '1.8'
|
|
}
|
|
dataBinding {
|
|
enabled = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation project(':readropslibrary')
|
|
|
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
|
implementation 'com.android.support:design:28.0.0'
|
|
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'
|
|
|
|
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'
|
|
|
|
implementation 'com.github.bumptech.glide:glide:4.8.0'
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
|
|
implementation "com.github.bumptech.glide:okhttp3-integration:4.8.0"
|
|
implementation("com.github.bumptech.glide:recyclerview-integration:4.8.0") {
|
|
// Excludes the support library because it's already included by Glide.
|
|
transitive = false
|
|
}
|
|
|
|
implementation 'android.arch.lifecycle:extensions:1.1.1'
|
|
implementation "android.arch.persistence.room:runtime:1.1.1"
|
|
annotationProcessor "android.arch.persistence.room:compiler:1.1.1"
|
|
implementation 'android.arch.paging:runtime:1.0.1'
|
|
implementation 'android.arch.paging:common:1.0.1'
|
|
|
|
|
|
implementation "joda-time:joda-time:2.9.9"
|
|
implementation 'org.jsoup:jsoup:1.11.3'
|
|
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
|
|
|
|
implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
|
|
implementation 'com.github.clans:fab:1.6.4'
|
|
|
|
// fastadapter requires androidx after 3.2.9
|
|
implementation 'com.mikepenz:fastadapter:3.2.9'
|
|
implementation 'com.mikepenz:fastadapter-commons:3.2.9'
|
|
implementation "com.mikepenz:materialdrawer:6.0.9"
|
|
|
|
implementation 'org.apache.commons:commons-collections4:4.3'
|
|
}
|