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'
14 minSdkVersion config.minSdkVersion
15 compileSdk config.compileSdkVersion
16 targetSdkVersion config.targetSdkVersion
22 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
26 namespace 'mozilla.components.concept.push'
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)