Bug 1849833 - Replace deprecated compileSdkVersion.
[gecko.git] / mobile / android / android-components / components / support / test-fakes / build.gradle
blobcd2c758cb94c117c77356b6f67b02f16aa44f988
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, archivesBaseName, project.ext.description)