2018-07-26 17:04:44 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2019-06-11 13:59:23 +02:00
|
|
|
compileSdkVersion 29
|
2018-07-26 17:04:44 +02:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "ml.docilealligator.infinityforreddit"
|
|
|
|
minSdkVersion 21
|
2019-06-11 13:59:23 +02:00
|
|
|
targetSdkVersion 29
|
2018-07-26 17:04:44 +02:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
2019-02-21 10:24:23 +01:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2018-07-26 17:04:44 +02:00
|
|
|
}
|
|
|
|
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')
|
2019-07-12 05:31:28 +02:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
|
2019-08-14 07:53:08 +02:00
|
|
|
implementation 'com.google.android.material:material:1.1.0-alpha09'
|
2019-02-21 10:24:23 +01:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
2019-02-22 06:34:24 +01:00
|
|
|
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
|
2018-07-26 17:04:44 +02:00
|
|
|
testImplementation 'junit:junit:4.12'
|
2019-06-11 13:59:23 +02:00
|
|
|
androidTestImplementation 'androidx.test:runner:1.2.0'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
2019-04-18 17:31:41 +02:00
|
|
|
implementation 'com.google.android.exoplayer:exoplayer:2.9.6'
|
|
|
|
implementation 'com.google.android.exoplayer:exoplayer-dash:2.9.6'
|
2019-02-21 10:24:23 +01:00
|
|
|
implementation 'androidx.browser:browser:1.0.0'
|
2018-07-26 17:04:44 +02:00
|
|
|
implementation 'com.alexvasilkov:gesture-views:2.5.2'
|
2019-02-21 10:24:23 +01:00
|
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
2019-06-14 05:58:52 +02:00
|
|
|
implementation 'com.github.bumptech.glide:glide:4.9.0'
|
2018-07-26 17:04:44 +02:00
|
|
|
implementation 'com.github.pwittchen:swipe-rx2:0.3.0'
|
2019-04-18 11:18:19 +02:00
|
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
|
2018-07-29 14:25:55 +02:00
|
|
|
// Room components
|
2019-02-21 10:24:23 +01:00
|
|
|
implementation "androidx.room:room-runtime:$rootProject.roomVersion"
|
|
|
|
annotationProcessor "androidx.room:room-compiler:$rootProject.roomVersion"
|
2018-07-29 14:25:55 +02:00
|
|
|
// Lifecycle components
|
2019-02-21 10:24:23 +01:00
|
|
|
implementation "androidx.lifecycle:lifecycle-extensions:$rootProject.archLifecycleVersion"
|
2019-08-30 05:35:44 +02:00
|
|
|
annotationProcessor "androidx.lifecycle:lifecycle-common-java8:$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-08-21 10:21:17 +02:00
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.6.1'
|
|
|
|
implementation 'com.squareup.retrofit2:converter-scalars:2.6.1'
|
2018-12-22 03:42:24 +01:00
|
|
|
implementation 'jp.wasabeef:glide-transformations:4.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'
|
2019-02-21 10:24:23 +01:00
|
|
|
implementation 'com.jakewharton:butterknife:10.1.0'
|
|
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:10.1.0'
|
2018-10-28 16:18:01 +01:00
|
|
|
implementation 'com.github.santalu:aspect-ratio-imageview:1.0.6'
|
2019-02-21 10:24:23 +01:00
|
|
|
implementation 'androidx.paging:paging-runtime:2.1.0'
|
2019-08-26 07:52:19 +02:00
|
|
|
implementation 'com.lsjwzh:materialloadingprogressbar:0.5.8-RELEASE'
|
|
|
|
implementation 'io.noties.markwon:core:4.1.0'
|
|
|
|
implementation 'io.noties.markwon:linkify:4.1.0'
|
|
|
|
implementation 'io.noties.markwon:ext-strikethrough:4.1.0'
|
2019-02-21 06:21:32 +01:00
|
|
|
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.16'
|
2019-02-22 06:34:24 +01:00
|
|
|
implementation 'com.github.Ferfalk:SimpleSearchView:0.1.3'
|
2019-04-18 17:31:41 +02:00
|
|
|
implementation 'org.greenrobot:eventbus:3.1.1'
|
2019-07-17 03:31:49 +02:00
|
|
|
implementation 'com.libRG:customtextview:2.2'
|
2019-07-26 17:31:48 +02:00
|
|
|
implementation 'com.github.Deishelon:RoundedBottomSheet:1.0.1'
|
2019-07-31 18:29:29 +02:00
|
|
|
implementation 'com.github.livefront:bridge:v1.2.0'
|
|
|
|
implementation 'com.evernote:android-state:1.4.1'
|
|
|
|
annotationProcessor 'com.evernote:android-state-processor:1.4.1'
|
2019-08-26 07:52:19 +02:00
|
|
|
implementation 'androidx.work:work-runtime:2.2.0'
|
|
|
|
implementation 'androidx.preference:preference:1.1.0-rc01'
|
|
|
|
implementation 'org.sufficientlysecure:html-textview:3.6'
|
2018-07-26 17:04:44 +02:00
|
|
|
}
|