Bug 1802817 - Set namespace via DSL in gradle build files.
[gecko.git] / mobile / android / android-components / components / concept / push / build.gradle
blob7c135ad7d017dfeed1cd7854a17b4246f1cf1b95
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 /* This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
9 apply plugin: 'com.android.library'
10 apply plugin: 'kotlin-android'
12 android {
13     compileSdkVersion config.compileSdkVersion
15     defaultConfig {
16         minSdkVersion config.minSdkVersion
17         targetSdkVersion config.targetSdkVersion
18     }
20     buildTypes {
21         release {
22             minifyEnabled false
23             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
24         }
25     }
27     namespace 'mozilla.components.concept.push'
30 dependencies {
31     implementation ComponentsDependencies.kotlin_stdlib
33     implementation project(':support-base')
35     testImplementation project(':support-test')
36     testImplementation ComponentsDependencies.testing_junit
37     testImplementation ComponentsDependencies.testing_mockito
40 apply from: '../../../android-lint.gradle'
41 apply from: '../../../publish.gradle'
42 ext.configurePublish(config.componentsGroupId, archivesBaseName, project.ext.description)