Readrops/app/build.gradle

74 lines
2.5 KiB
Groovy
Raw Normal View History

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"
2019-05-10 13:24:02 +02:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2019-01-12 13:10:02 +01:00
}
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-05-10 13:24:02 +02:00
implementation 'androidx.appcompat:appcompat:1.0.2'
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'
2019-05-10 13:24:02 +02:00
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
2019-01-12 13:10:02 +01:00
testImplementation 'junit:junit:4.12'
2019-05-10 13:24:02 +02:00
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
2019-01-12 15:07:04 +01:00
implementation 'com.github.bumptech.glide:glide:4.9.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
implementation "com.github.bumptech.glide:okhttp3-integration:4.9.0"
implementation("com.github.bumptech.glide:recyclerview-integration:4.9.0") {
// Excludes the support library because it's already included by Glide.
transitive = false
}
2019-05-10 13:24:02 +02:00
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
implementation 'androidx.room:room-runtime:2.0.0'
annotationProcessor 'androidx.room:room-compiler:2.0.0'
implementation 'androidx.paging:paging-runtime:2.1.0'
implementation 'androidx.paging:paging-common:2.1.0'
2019-01-25 13:23:28 +01:00
implementation "joda-time:joda-time:2.9.9"
implementation 'org.jsoup:jsoup:1.11.3'
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'
// 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'
2019-01-12 13:10:02 +01:00
}