2019-01-12 13:14:01 +01:00
|
|
|
apply plugin: 'com.android.library'
|
2019-09-14 12:56:10 +02:00
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
apply plugin: 'kotlin-android'
|
2019-01-12 13:14:01 +01:00
|
|
|
|
|
|
|
android {
|
2019-12-21 21:46:02 +01:00
|
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
2019-01-12 13:14:01 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
2019-12-21 21:46:02 +01:00
|
|
|
minSdkVersion rootProject.ext.minSdkVersion
|
|
|
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
2019-01-12 13:14:01 +01:00
|
|
|
|
2019-05-10 13:24:02 +02:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2019-01-12 13:14:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
2019-11-24 16:55:20 +01:00
|
|
|
minifyEnabled true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
|
|
|
|
debug {
|
2019-01-12 13:14:01 +01:00
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2019-08-09 21:57:11 +02:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility = '1.8'
|
|
|
|
targetCompatibility = '1.8'
|
|
|
|
}
|
2019-01-12 13:14:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2020-01-02 15:19:57 +01:00
|
|
|
implementation project(':readropsdb')
|
2019-01-12 13:14:01 +01:00
|
|
|
|
2019-11-24 21:18:00 +01:00
|
|
|
implementation "androidx.core:core-ktx:1.1.0"
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
2019-09-19 10:39:15 +02:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
2019-12-07 13:59:30 +01:00
|
|
|
|
2019-01-12 13:14:01 +01:00
|
|
|
testImplementation 'junit:junit:4.12'
|
2019-07-20 16:46:59 +02:00
|
|
|
androidTestImplementation 'androidx.test:runner:1.2.0'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
2019-01-12 15:20:17 +01:00
|
|
|
|
2019-09-19 10:39:15 +02:00
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.6.1'
|
|
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.6.1'
|
|
|
|
implementation 'com.squareup.retrofit2:converter-simplexml:2.6.1'
|
|
|
|
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.6.1'
|
2019-01-12 16:54:27 +01:00
|
|
|
|
2019-09-19 10:39:15 +02:00
|
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:4.2.0'
|
2019-05-10 13:24:02 +02:00
|
|
|
|
2020-01-02 15:38:25 +01:00
|
|
|
api 'io.reactivex.rxjava2:rxandroid:2.1.1'
|
|
|
|
api 'org.jsoup:jsoup:1.12.1'
|
2019-11-24 21:18:00 +01:00
|
|
|
|
2020-01-01 18:10:15 +01:00
|
|
|
debugApi 'com.facebook.flipper:flipper:0.30.1'
|
|
|
|
debugApi 'com.facebook.soloader:soloader:0.8.0'
|
|
|
|
debugApi 'com.facebook.flipper:flipper-network-plugin:0.30.1'
|
2019-01-12 13:14:01 +01:00
|
|
|
}
|