Bug 1849833 - Replace deprecated compileSdkVersion.
[gecko.git] / mobile / android / android-components / components / ui / icons / build.gradle
blob5e7b4a88ddd817b34b608caf9f91a100ff4098dc
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'
7 android {
8     defaultConfig {
9         minSdkVersion config.minSdkVersion
10         compileSdk config.compileSdkVersion
11         targetSdkVersion config.targetSdkVersion
12     }
14     buildTypes {
15         release {
16             minifyEnabled false
17             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18         }
19     }
21     namespace 'mozilla.components.ui.icons'
24 dependencies {
25     // None
28 apply from: '../../../android-lint.gradle'
29 apply from: '../../../publish.gradle'
30 ext.configurePublish(config.componentsGroupId, archivesBaseName, project.ext.description)