build.gradle (1016B)
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/. */ 4 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/. */ 8 9 apply plugin: 'com.android.library' 10 apply plugin: 'kotlin-android' 11 12 android { 13 namespace = 'mozilla.components.concept.push' 14 } 15 16 dependencies { 17 implementation project(':components:support-base') 18 19 testImplementation project(':components:support-test') 20 21 testImplementation platform(libs.junit.bom) 22 testImplementation libs.junit4 23 testRuntimeOnly libs.junit.platform.launcher 24 testRuntimeOnly libs.junit.vintage 25 } 26 27 apply from: '../../../common-config.gradle' 28 apply from: '../../../publish.gradle' 29 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)