Bug 1849833 - Replace deprecated compileSdkVersion.
[gecko.git] / mobile / android / android-components / components / feature / webauthn / build.gradle
blob519b717dcf8b8c062fd4a23c9eb840e1d7dc0e67
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
13     }
15     buildTypes {
16         release {
17             minifyEnabled false
18             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
19         }
20     }
22     namespace 'mozilla.components.feature.webauthn'
25 dependencies {
26     implementation project(':concept-engine')
28     testImplementation project(':support-test')
30     testImplementation ComponentsDependencies.androidx_test_core
31     testImplementation ComponentsDependencies.androidx_test_junit
34 apply from: '../../../android-lint.gradle'
35 apply from: '../../../publish.gradle'
36 ext.configurePublish(config.componentsGroupId, archivesBaseName, project.ext.description)