build.gradle (1262B)
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.browser.tabstray' 10 } 11 12 dependencies { 13 api project(':components:concept-tabstray') 14 15 api libs.androidx.recyclerview 16 17 implementation project(':components:browser-state') 18 implementation project(':components:concept-base') 19 implementation project(':components:support-images') 20 implementation project(':components:support-ktx') 21 implementation project(':components:ui-colors') 22 implementation project(':components:ui-icons') 23 24 implementation libs.androidx.appcompat 25 implementation libs.androidx.cardview 26 implementation libs.kotlinx.coroutines 27 28 testImplementation project(':components:support-test') 29 30 testImplementation libs.androidx.test.core 31 testImplementation libs.androidx.test.junit 32 testImplementation libs.robolectric 33 } 34 35 apply from: '../../../common-config.gradle' 36 apply from: '../../../publish.gradle' 37 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)