Bug 1802817 - Set namespace via DSL in gradle build files.
[gecko.git] / mobile / android / android-components / components / service / contile / build.gradle
blobbc3cb47ed6ee24e3012ee6571f3990c344791c8a
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     }
23     namespace 'mozilla.components.service.contile'
26 dependencies {
27     implementation ComponentsDependencies.kotlin_stdlib
28     implementation ComponentsDependencies.kotlin_coroutines
29     implementation ComponentsDependencies.androidx_work_runtime
31     implementation project(':concept-fetch')
32     implementation project(':support-ktx')
33     implementation project(':support-base')
34     implementation project(':feature-top-sites')
36     testImplementation ComponentsDependencies.androidx_test_core
37     testImplementation ComponentsDependencies.androidx_test_junit
38     testImplementation ComponentsDependencies.androidx_work_testing
39     testImplementation ComponentsDependencies.testing_robolectric
40     testImplementation ComponentsDependencies.testing_mockito
41     testImplementation ComponentsDependencies.testing_coroutines
43     testImplementation project(':support-test')
46 apply from: '../../../android-lint.gradle'
47 apply from: '../../../publish.gradle'
48 ext.configurePublish(config.componentsGroupId, archivesBaseName, project.ext.description)