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'
13 compileSdkVersion config.compileSdkVersion
16 minSdkVersion config.minSdkVersion
17 targetSdkVersion config.targetSdkVersion
23 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
27 namespace 'mozilla.components.concept.push'
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)