Readrops/api/build.gradle

84 lines
2.4 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'
2019-01-12 13:14:01 +01:00
android {
compileSdkVersion rootProject.ext.compileSdkVersion
2019-01-12 13:14:01 +01:00
defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
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
}
2020-03-22 18:22:37 +01:00
2020-08-03 23:45:21 +02:00
sourceSets {
androidTest.assets.srcDirs += files("$projectDir/androidTest/assets".toString())
}
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
2021-09-16 22:29:25 +02:00
testCoverageEnabled true
2019-01-12 13:14:01 +01:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
2023-08-15 22:44:44 +02:00
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
2021-07-02 18:56:11 +02:00
kotlinOptions {
2023-08-15 22:44:44 +02:00
jvmTarget = '17'
2024-02-15 21:41:32 +01:00
freeCompilerArgs = ["-Xstring-concat=inline"]
2021-07-02 18:56:11 +02:00
}
2023-02-20 19:13:06 +01:00
lint {
abortOnError false
}
namespace 'com.readrops.api'
2019-01-12 13:14:01 +01:00
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
2020-07-19 11:16:24 +02:00
implementation project(':db')
2019-01-12 13:14:01 +01:00
2020-09-20 18:44:55 +02:00
testImplementation 'junit:junit:4.13'
2021-07-03 19:44:42 +02:00
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test:runner:1.4.0'
androidTestImplementation 'androidx.test:rules:1.4.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
2021-09-20 19:27:12 +02:00
implementation(libs.bundles.koin)
testImplementation(libs.bundles.kointest)
2019-01-12 15:20:17 +01:00
implementation(libs.konsumexml)
implementation(libs.kotlinxmlbuilder)
implementation(libs.okhttp)
testImplementation(libs.okhttp.mockserver)
implementation('com.squareup.retrofit2:retrofit:2.9.0') {
exclude group: 'com.squareup.okhttp3', module: 'okhttp3'
}
implementation('com.squareup.retrofit2:converter-moshi:2.9.0') {
exclude group: 'com.squareup.moshi', module: 'moshi'
}
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.9.0'
2019-01-12 16:54:27 +01:00
implementation 'com.squareup.moshi:moshi:1.15.1'
2019-05-10 13:24:02 +02:00
api 'io.reactivex.rxjava2:rxandroid:2.1.1'
api 'org.jsoup:jsoup:1.13.1'
2021-07-02 18:56:11 +02:00
debugApi 'com.chimerapps.niddler:niddler:1.5.5'
releaseApi 'com.chimerapps.niddler:niddler-noop:1.5.5'
2024-03-31 19:48:29 +02:00
testImplementation(libs.coroutines.test)
2019-01-12 13:14:01 +01:00
}