Readrops/readropslibrary/build.gradle

51 lines
1.5 KiB
Groovy
Raw Normal View History

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 {
compileSdkVersion 29
2019-01-12 13:14:01 +01:00
defaultConfig {
minSdkVersion 21
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'
}
}
compileOptions {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
2019-01-12 13:14:01 +01:00
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
2019-01-12 13:14:01 +01:00
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
2019-01-12 15:20:17 +01: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
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'
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
}