Bug 1925561 - Use a quicker radius calculation for ArcParams. r=aosmond
[gecko.git] / mobile / android / android-components / components / support / test-fakes / build.gradle
blob0dd4911a3e018a7f35e3cf4ea3b6913de77a9a8b
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/. */
5 apply plugin: 'com.android.library'
6 apply plugin: 'kotlin-android'
8 android {
9     defaultConfig {
10         minSdkVersion config.minSdkVersion
11         compileSdk config.compileSdkVersion
12         targetSdkVersion config.targetSdkVersion
14         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
15     }
17     buildTypes {
18         release {
19             minifyEnabled false
20             proguardFiles getDefaultProguardFile('proguard-android.txt')
21         }
22     }
24     namespace 'mozilla.components.support.test.fakes'
27 dependencies {
28     implementation project(":concept-engine")
30     implementation ComponentsDependencies.kotlin_coroutines
32     implementation ComponentsDependencies.androidx_test_junit
35 apply from: '../../../android-lint.gradle'
36 apply from: '../../../publish.gradle'
37 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)