Bug 1899970 - Implement the snackbar display for the quit menu item. r=gl,android...
[gecko.git] / mobile / android / android-components / components / service / location / build.gradle
blobe9446bf656889f069cd80e86bfbe9baaca45b82a
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     defaultConfig {
10         minSdkVersion config.minSdkVersion
11         compileSdk config.compileSdkVersion
12         targetSdkVersion config.targetSdkVersion
13     }
15     buildTypes {
16         release {
17             minifyEnabled false
18             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
19         }
20     }
22     namespace 'mozilla.components.service.location'
25 dependencies {
26     implementation ComponentsDependencies.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 ComponentsDependencies.androidx_test_junit
35     testImplementation ComponentsDependencies.testing_robolectric
36     testImplementation ComponentsDependencies.testing_mockwebserver
37     testImplementation ComponentsDependencies.testing_coroutines
39     testImplementation project(':lib-fetch-httpurlconnection')
42 apply from: '../../../android-lint.gradle'
43 apply from: '../../../publish.gradle'
44 ext.configurePublish(config.componentsGroupId, archivesBaseName, project.ext.description)