build.gradle (706B)
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 packaging { 10 resources { 11 excludes += ['META-INF/LICENSE.md', 'META-INF/LICENSE-notice.md'] 12 } 13 } 14 15 namespace = 'mozilla.components.tooling.fetch.tests' 16 } 17 18 dependencies { 19 implementation project(':components:concept-fetch') 20 21 implementation libs.junit4 22 implementation libs.kotlinx.coroutines 23 implementation libs.mockwebserver 24 } 25 26 apply from: '../../../common-config.gradle'