[components] For https://github.com/mozilla-mobile/android-components/issues/10404...
[gecko.git] / mobile / android / android-components / components / feature / webnotifications / build.gradle
blob3acfef2325991b4ca9e36d6f7fa59afdaa2f19dc
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     compileSdkVersion config.compileSdkVersion
11     defaultConfig {
12         minSdkVersion config.minSdkVersion
13         targetSdkVersion config.targetSdkVersion
14     }
16     buildTypes {
17         release {
18             minifyEnabled false
19             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
20         }
21     }
24 dependencies {
25     implementation project(':browser-icons')
26     implementation project(':concept-engine')
27     implementation project(':feature-sitepermissions')
28     implementation project(':support-ktx')
30     implementation Dependencies.androidx_core_ktx
31     implementation Dependencies.kotlin_stdlib
32     implementation Dependencies.kotlin_coroutines
34     testImplementation project(':support-test')
36     testImplementation Dependencies.androidx_test_core
37     testImplementation Dependencies.androidx_test_junit
38     testImplementation Dependencies.testing_coroutines
39     testImplementation Dependencies.testing_robolectric
40     testImplementation Dependencies.testing_mockito
43 apply from: '../../../publish.gradle'
44 ext.configurePublish(config.componentsGroupId, archivesBaseName, project.ext.description)