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-11-01 22:50:50 +01:00
|
|
|
compileSdkVersion 29
|
2019-01-12 13:14:01 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 21
|
2019-11-01 22:50:50 +01:00
|
|
|
targetSdkVersion 29
|
2019-01-12 13:14:01 +01:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
|
2019-05-10 13:24:02 +02:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2019-01-12 13:14:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
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'])
|
|
|
|
|
2019-09-19 10:39:15 +02:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
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
|
|
|
|
2019-08-23 20:52:37 +02:00
|
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
|
2019-09-19 10:39:15 +02:00
|
|
|
implementation 'org.jsoup:jsoup:1.12.1'
|
2019-08-18 13:07:59 +02:00
|
|
|
implementation 'com.facebook.stetho:stetho-okhttp3:1.5.1'
|
2019-09-14 12:56:10 +02:00
|
|
|
|
|
|
|
implementation "androidx.core:core-ktx:1.1.0"
|
2019-09-22 18:18:20 +02:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
2019-01-12 13:14:01 +01:00
|
|
|
}
|