build.gradle (1090B)
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.feature.push' 10 } 11 12 13 dependencies { 14 implementation project(':components:concept-push') 15 implementation project(':components:support-base') 16 17 implementation ComponentsDependencies.mozilla_appservices_push 18 implementation libs.androidx.lifecycle.runtime 19 implementation libs.androidx.work.runtime 20 implementation libs.kotlinx.coroutines 21 22 testImplementation project(':components:support-test') 23 24 testImplementation libs.androidx.test.core 25 testImplementation libs.androidx.test.junit 26 testImplementation libs.kotlinx.coroutines.test 27 testImplementation libs.robolectric 28 } 29 30 apply from: '../../../common-config.gradle' 31 apply from: '../../../publish.gradle' 32 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)