Backed out changeset 0ac3aa2e9c97 (bug 1910869) for causing failures at 2d.text.draw...
[gecko.git] / mobile / android / android-components / components / support / rusterrors / build.gradle
blobf11ef03f1853853d8e77cd92de8c4fd5dcd04443
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     lint {
16         warningsAsErrors true
17         abortOnError true
18     }
20     buildTypes {
21         release {
22             minifyEnabled false
23             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
24             consumerProguardFiles 'proguard-rules-consumer.pro'
25         }
26     }
28     namespace 'mozilla.components.support.rusterrors'
31 dependencies {
32     implementation ComponentsDependencies.mozilla_appservices_errorsupport
34     implementation ComponentsDependencies.kotlin_coroutines
35     implementation project(':support-base')
38 apply from: '../../../publish.gradle'
39 ext.configurePublish(config.componentsGroupId, archivesBaseName, project.ext.description)