fune/mobile/android/android-components/components/lib/fetch-httpurlconnection/build.gradle

38 lines
1.1 KiB
Groovy

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android {
compileSdkVersion Config.compileSdkVersion
defaultConfig {
minSdkVersion Config.minSdkVersion
targetSdkVersion Config.targetSdkVersion
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation Deps.kotlin_stdlib
implementation Deps.kotlin_coroutines
implementation project(':concept-fetch')
testImplementation Deps.testing_junit
testImplementation Deps.testing_robolectric
testImplementation Deps.testing_mockito
testImplementation project(':tooling-fetch-tests')
}
apply from: '../../../publish.gradle'
ext.configurePublish(Config.componentsGroupId, archivesBaseName, gradle.componentDescriptions[archivesBaseName])