Import l10n.
[gecko.git] / mobile / android / android-components / components / feature / autofill / build.gradle
blob4d738eccc4329734df0ccaca9a6bba4b080ae1d8
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 apply plugin: 'com.android.library'
6 apply plugin: 'kotlin-android'
7 apply plugin: 'kotlin-parcelize'
9 android {
10     compileSdkVersion config.compileSdkVersion
12     defaultConfig {
13         minSdkVersion config.minSdkVersion
14         targetSdkVersion config.targetSdkVersion
15     }
17     buildTypes {
18         release {
19             minifyEnabled false
20             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
21         }
22     }
25 dependencies {
26     implementation project(':concept-fetch')
27     implementation project(':concept-storage')
28     implementation project(':lib-publicsuffixlist')
29     implementation project(':service-digitalassetlinks')
30     implementation project(':support-base')
31     implementation project(':support-ktx')
32     implementation project(":support-utils")
34     implementation Dependencies.androidx_annotation
35     implementation Dependencies.androidx_autofill
36     implementation Dependencies.androidx_biometric
37     implementation Dependencies.androidx_fragment
38     implementation Dependencies.androidx_lifecycle_runtime
39     implementation Dependencies.androidx_recyclerview
40     implementation Dependencies.androidx_core_ktx
41     implementation Dependencies.androidx_preferences
43     implementation Dependencies.kotlin_stdlib
44     implementation Dependencies.kotlin_coroutines
46     testImplementation project(':support-test')
47     testImplementation project(':lib-fetch-okhttp')
49     testImplementation Dependencies.androidx_test_core
50     testImplementation Dependencies.androidx_test_junit
51     testImplementation Dependencies.testing_mockito
52     testImplementation Dependencies.testing_robolectric
53     testImplementation Dependencies.testing_coroutines
54     testImplementation Dependencies.testing_mockwebserver
57 apply from: '../../../android-lint.gradle'
58 apply from: '../../../publish.gradle'
59 ext.configurePublish(config.componentsGroupId, archivesBaseName, project.ext.description)