2018-07-26 17:04:44 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "ml.docilealligator.infinityforreddit"
|
|
|
|
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'
|
|
|
|
}
|
|
|
|
}
|
2018-12-27 04:29:02 +01:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility = '1.8'
|
|
|
|
targetCompatibility = '1.8'
|
|
|
|
}
|
2018-07-26 17:04:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
url "http://dl.bintray.com/rilixtech/maven"
|
|
|
|
}
|
|
|
|
mavenCentral()
|
|
|
|
google()
|
2018-08-20 18:08:48 +02:00
|
|
|
jcenter()
|
2018-07-26 17:04:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
2018-09-22 04:45:38 +02:00
|
|
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
|
|
|
implementation 'com.android.support:design:28.0.0'
|
|
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
|
|
|
implementation 'com.android.support:support-v4:28.0.0'
|
2018-07-26 17:04:44 +02:00
|
|
|
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.android.volley:volley:1.1.0'
|
|
|
|
implementation 'de.hdodenhof:circleimageview:2.2.0'
|
|
|
|
implementation 'com.google.android.exoplayer:exoplayer:2.7.0'
|
|
|
|
implementation 'com.google.android.exoplayer:exoplayer-dash:2.7.0'
|
2018-09-22 04:45:38 +02:00
|
|
|
implementation 'com.android.support:customtabs:28.0.0'
|
2018-07-26 17:04:44 +02:00
|
|
|
implementation 'com.alexvasilkov:gesture-views:2.5.2'
|
2018-09-22 04:45:38 +02:00
|
|
|
implementation 'com.android.support:cardview-v7:28.0.0'
|
2018-12-22 03:42:24 +01:00
|
|
|
implementation 'com.github.bumptech.glide:glide:4.8.0'
|
2018-07-26 17:04:44 +02:00
|
|
|
implementation 'com.github.pwittchen:swipe-rx2:0.3.0'
|
2018-08-30 15:18:21 +02:00
|
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.7.1'
|
2018-07-29 14:25:55 +02:00
|
|
|
// Room components
|
|
|
|
implementation "android.arch.persistence.room:runtime:$rootProject.roomVersion"
|
|
|
|
annotationProcessor "android.arch.persistence.room:compiler:$rootProject.roomVersion"
|
|
|
|
androidTestImplementation "android.arch.persistence.room:testing:$rootProject.roomVersion"
|
|
|
|
// Lifecycle components
|
|
|
|
implementation "android.arch.lifecycle:extensions:$rootProject.archLifecycleVersion"
|
|
|
|
annotationProcessor "android.arch.lifecycle:compiler:$rootProject.archLifecycleVersion"
|
2018-08-18 18:03:56 +02:00
|
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
|
|
|
|
implementation 'io.reactivex.rxjava2:rxjava:2.2.0'
|
2019-02-12 07:37:36 +01:00
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.5.0'
|
2018-08-27 17:05:56 +02:00
|
|
|
implementation 'com.squareup.retrofit2:converter-scalars:2.4.0'
|
2018-12-22 03:42:24 +01:00
|
|
|
implementation 'jp.wasabeef:glide-transformations:4.0.0'
|
2018-09-02 18:05:42 +02:00
|
|
|
implementation 'com.muditsen.multilevelrecyclerview:multilevelview:1.0.0'
|
2018-09-28 03:18:28 +02:00
|
|
|
implementation 'com.google.dagger:dagger:2.17'
|
|
|
|
annotationProcessor 'com.google.dagger:dagger-compiler:2.17'
|
2018-10-12 17:52:23 +02:00
|
|
|
implementation 'com.jakewharton:butterknife:8.8.1'
|
|
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
|
2018-10-28 16:18:01 +01:00
|
|
|
implementation 'com.github.santalu:aspect-ratio-imageview:1.0.6'
|
2018-12-22 03:42:24 +01:00
|
|
|
implementation 'com.felipecsl:gifimageview:2.2.0'
|
2018-12-27 04:29:02 +01:00
|
|
|
implementation "android.arch.paging:runtime:1.0.1"
|
2018-12-27 08:14:10 +01:00
|
|
|
implementation "com.lsjwzh:materialloadingprogressbar:0.5.8-RELEASE"
|
2019-01-09 03:05:20 +01:00
|
|
|
implementation "ru.noties:markwon:2.0.1"
|
|
|
|
implementation "ru.noties:markwon-syntax-highlight:2.0.1"
|
|
|
|
implementation "ru.noties:markwon-view:2.0.1"
|
2018-07-26 17:04:44 +02:00
|
|
|
}
|