Import l10n.
[gecko.git] / mobile / android / android-components / components / service / location / build.gradle
blobed1aa442058cd21c5900c6819671b53cebd008f2
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'
8 android {
9     compileSdkVersion config.compileSdkVersion
11     defaultConfig {
12         minSdkVersion config.minSdkVersion
13         targetSdkVersion config.targetSdkVersion
14     }
16     buildTypes {
17         release {
18             minifyEnabled false
19             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
20         }
21     }
24 dependencies {
25     implementation Dependencies.kotlin_stdlib
26     implementation Dependencies.kotlin_coroutines
28     implementation project(':concept-fetch')
29     implementation project(':support-ktx')
30     implementation project(':support-ktx')
31     implementation project(':support-base')
33     testImplementation project(':support-test')
34     testImplementation Dependencies.androidx_test_junit
35     testImplementation Dependencies.testing_robolectric
36     testImplementation Dependencies.testing_mockito
37     testImplementation Dependencies.testing_mockwebserver
38     testImplementation Dependencies.testing_coroutines
40     testImplementation project(':lib-fetch-httpurlconnection')
43 apply from: '../../../android-lint.gradle'
44 apply from: '../../../publish.gradle'
45 ext.configurePublish(config.componentsGroupId, archivesBaseName, project.ext.description)