/* 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/. */ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile apply plugin: 'com.android.library' apply plugin: 'kotlin-android' android { defaultConfig { minSdkVersion = config.minSdkVersion compileSdk = config.compileSdkVersion targetSdkVersion = config.targetSdkVersion } buildTypes { release { minifyEnabled = false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } namespace = 'mozilla.components.feature.accounts' } tasks.register("updateBuiltInExtensionVersion", Copy) { task -> updateExtensionVersion(task, 'src/main/assets/extensions/fxawebchannel') } tasks.withType(KotlinCompile).configureEach { kotlinOptions.freeCompilerArgs += "-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi" } dependencies { implementation libs.kotlin.coroutines implementation libs.androidx.work.runtime implementation project(':concept-engine') implementation project(":browser-state") implementation project(':feature-tabs') implementation project(':service-firefox-accounts') implementation project(':support-ktx') implementation project(':support-webextensions') testImplementation libs.androidx.test.junit testImplementation ComponentsDependencies.mozilla_appservices_full_megazord_libsForTests testImplementation libs.testing.robolectric testImplementation libs.testing.coroutines testImplementation project(':support-test') } apply from: '../../../android-lint.gradle' apply from: '../../../publish.gradle' ext.configurePublish(config.componentsGroupId, project.name, project.ext.description) preBuild.dependsOn updateBuiltInExtensionVersion