Source code
Revision control
Copy as Markdown
Other Tools
/* 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
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-parcelize'
android {
namespace = 'mozilla.components.feature.autofill'
}
dependencies {
implementation project(':components:concept-fetch')
implementation project(':components:concept-storage')
implementation project(':components:lib-publicsuffixlist')
implementation project(':components:service-digitalassetlinks')
implementation project(':components:support-base')
implementation project(':components:support-ktx')
implementation project(":components:support-utils")
implementation project(':components:ui-widgets')
implementation libs.androidx.annotation
implementation libs.androidx.autofill
implementation libs.androidx.biometric
implementation libs.androidx.core.ktx
implementation libs.androidx.fragment
implementation libs.androidx.lifecycle.runtime
implementation libs.androidx.preferences
implementation libs.androidx.recyclerview
implementation libs.kotlinx.coroutines
implementation libs.google.material
testImplementation project(':components:lib-fetch-okhttp')
testImplementation project(':components:support-test')
testImplementation libs.androidx.test.core
testImplementation libs.androidx.test.junit
testImplementation libs.kotlinx.coroutines.test
testImplementation libs.mockwebserver
testImplementation libs.robolectric
}
apply from: '../../../common-config.gradle'
apply from: '../../../publish.gradle'
ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)