build.gradle (992B)
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.webcompat.reporter' 10 } 11 12 dependencies { 13 implementation project(':components:concept-engine') 14 implementation project(':components:support-webextensions') 15 16 implementation libs.androidx.core.ktx 17 implementation libs.kotlinx.coroutines 18 19 testImplementation project(':components:support-test') 20 21 testImplementation libs.androidx.test.core 22 testImplementation libs.androidx.test.junit 23 testImplementation libs.kotlinx.coroutines.test 24 testImplementation libs.robolectric 25 } 26 27 apply from: '../../../common-config.gradle' 28 apply from: '../../../publish.gradle' 29 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)