build.gradle (1279B)
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.intent' 10 } 11 12 dependencies { 13 implementation project(':components:browser-state') 14 implementation project(':components:concept-engine') 15 implementation project(':components:feature-search') 16 implementation project(':components:feature-session') 17 implementation project(':components:feature-tabs') 18 implementation project(':components:support-ktx') 19 implementation project(':components:support-utils') 20 21 testImplementation project(':components:support-test') 22 testImplementation project(':components:support-test-libstate') 23 24 testImplementation libs.androidx.browser 25 testImplementation libs.androidx.test.junit 26 testImplementation libs.kotlinx.coroutines 27 testImplementation libs.kotlinx.coroutines.test 28 testImplementation libs.robolectric 29 } 30 31 apply from: '../../../common-config.gradle' 32 apply from: '../../../publish.gradle' 33 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)