mirror of https://github.com/readrops/Readrops.git
Configure readropsdb module and dependencies
This commit is contained in:
parent
fe78ea4f68
commit
b2acceb868
|
@ -74,10 +74,6 @@ dependencies {
|
||||||
implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
|
||||||
kapt 'androidx.lifecycle:lifecycle-common-java8:2.1.0'
|
kapt 'androidx.lifecycle:lifecycle-common-java8:2.1.0'
|
||||||
|
|
||||||
implementation 'org.jsoup:jsoup:1.12.1'
|
|
||||||
|
|
||||||
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
|
|
||||||
|
|
||||||
implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
|
implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
|
||||||
|
|
||||||
implementation 'com.mikepenz:fastadapter:3.3.1'
|
implementation 'com.mikepenz:fastadapter:3.3.1'
|
||||||
|
|
|
@ -4,15 +4,11 @@ apply plugin: 'kotlin-android'
|
||||||
apply plugin: 'kotlin-kapt'
|
apply plugin: 'kotlin-kapt'
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 29
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
||||||
buildToolsVersion "29.0.2"
|
|
||||||
|
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion 21
|
minSdkVersion rootProject.ext.minSdkVersion
|
||||||
targetSdkVersion 29
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||||
versionCode 1
|
|
||||||
versionName "1.0"
|
|
||||||
|
|
||||||
javaCompileOptions {
|
javaCompileOptions {
|
||||||
annotationProcessorOptions {
|
annotationProcessorOptions {
|
||||||
|
@ -28,11 +24,20 @@ android {
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
release {
|
release {
|
||||||
minifyEnabled false
|
minifyEnabled true
|
||||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
debug {
|
||||||
|
minifyEnabled false
|
||||||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
compileOptions {
|
||||||
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||||||
|
targetCompatibility JavaVersion.VERSION_1_8
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
|
@ -48,8 +48,8 @@ dependencies {
|
||||||
|
|
||||||
implementation 'com.squareup.okhttp3:logging-interceptor:4.2.0'
|
implementation 'com.squareup.okhttp3:logging-interceptor:4.2.0'
|
||||||
|
|
||||||
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
|
api 'io.reactivex.rxjava2:rxandroid:2.1.1'
|
||||||
implementation 'org.jsoup:jsoup:1.12.1'
|
api 'org.jsoup:jsoup:1.12.1'
|
||||||
|
|
||||||
debugApi 'com.facebook.flipper:flipper:0.30.1'
|
debugApi 'com.facebook.flipper:flipper:0.30.1'
|
||||||
debugApi 'com.facebook.soloader:soloader:0.8.0'
|
debugApi 'com.facebook.soloader:soloader:0.8.0'
|
||||||
|
|
Loading…
Reference in New Issue