build.gradle (1664B)
1 import org.jetbrains.kotlin.gradle.tasks.KotlinCompile 2 3 /* This Source Code Form is subject to the terms of the Mozilla Public 4 * License, v. 2.0. If a copy of the MPL was not distributed with this 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 */ 7 8 apply plugin: 'com.android.library' 9 apply plugin: 'kotlin-android' 10 11 android { 12 namespace = 'mozilla.components.feature.sendtab' 13 } 14 15 dependencies { 16 implementation project(':components:browser-icons') 17 implementation project(':components:browser-state') 18 implementation project(':components:browser-storage-sync') 19 implementation project(':components:concept-awesomebar') 20 implementation project(':components:concept-engine') 21 implementation project(':components:concept-toolbar') 22 implementation project(':components:feature-session') 23 implementation project(':components:service-firefox-accounts') 24 implementation project(':components:support-base') 25 implementation project(':components:support-ktx') 26 implementation project(':components:support-utils') 27 28 implementation libs.androidx.lifecycle.runtime 29 implementation libs.androidx.work.runtime 30 implementation libs.kotlinx.coroutines 31 32 testImplementation project(':components:support-test') 33 34 testImplementation libs.androidx.concurrent 35 testImplementation libs.androidx.test.junit 36 testImplementation libs.androidx.work.testing 37 testImplementation libs.kotlinx.coroutines.test 38 testImplementation libs.robolectric 39 } 40 41 apply from: '../../../common-config.gradle' 42 apply from: '../../../publish.gradle' 43 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)