forked from mirrors/gecko-dev
59 lines
2 KiB
Groovy
59 lines
2 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
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
packagingOptions {
|
|
exclude 'META-INF/proguard/androidx-annotations.pro'
|
|
}
|
|
}
|
|
|
|
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
|
|
kotlinOptions.freeCompilerArgs += [
|
|
"-Xuse-experimental=kotlinx.coroutines.ExperimentalCoroutinesApi"
|
|
]
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':browser-state')
|
|
implementation project(':concept-engine')
|
|
implementation project(':concept-base')
|
|
implementation project(':support-ktx')
|
|
implementation project(':support-images')
|
|
|
|
implementation Dependencies.androidx_annotation
|
|
implementation Dependencies.androidx_core_ktx
|
|
implementation Dependencies.kotlin_coroutines
|
|
implementation Dependencies.kotlin_stdlib
|
|
implementation Dependencies.thirdparty_disklrucache
|
|
|
|
testImplementation project(':support-test')
|
|
testImplementation project(':support-test-libstate')
|
|
|
|
testImplementation Dependencies.androidx_test_core
|
|
testImplementation Dependencies.androidx_test_junit
|
|
testImplementation Dependencies.testing_mockito
|
|
testImplementation Dependencies.testing_robolectric
|
|
testImplementation Dependencies.testing_coroutines
|
|
}
|
|
|
|
apply from: '../../../publish.gradle'
|
|
ext.configurePublish(config.componentsGroupId, archivesBaseName, project.ext.description)
|