Backed out 2 changesets (bug 1943998) for causing wd failures @ phases.py CLOSED...
[gecko.git] / mobile / android / android-components / components / concept / push / build.gradle
blob6bf9cd109963202c2b0fa364a0619cc5cb010af0
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     defaultConfig {
14         minSdkVersion config.minSdkVersion
15         compileSdk config.compileSdkVersion
16         targetSdkVersion config.targetSdkVersion
17     }
19     buildTypes {
20         release {
21             minifyEnabled false
22             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
23         }
24     }
26     namespace 'mozilla.components.concept.push'
29 dependencies {
30     implementation project(':support-base')
32     testImplementation project(':support-test')
33     testImplementation ComponentsDependencies.junit_vintage
36 apply from: '../../../android-lint.gradle'
37 apply from: '../../../publish.gradle'
38 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)