build.gradle (1129B)
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 apply plugin: 'com.android.library' 6 apply plugin: 'kotlin-android' 7 8 android { 9 namespace = 'mozilla.components.lib.push.firebase' 10 } 11 12 dependencies { 13 api libs.firebase.messaging 14 15 implementation project(':components:concept-push') 16 implementation project(':components:support-base') 17 18 implementation libs.kotlinx.coroutines 19 implementation libs.play.services.base 20 21 testImplementation project(':components:support-test') 22 23 testImplementation libs.androidx.test.core 24 testImplementation libs.kotlinx.coroutines.test 25 testImplementation platform(libs.junit.bom) 26 testImplementation libs.junit4 27 testRuntimeOnly libs.junit.platform.launcher 28 testRuntimeOnly libs.junit.vintage 29 testImplementation libs.robolectric 30 } 31 32 apply from: '../../../common-config.gradle' 33 apply from: '../../../publish.gradle' 34 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)