[components] For https://github.com/mozilla-mobile/android-components/issues/10404...
[gecko.git] / mobile / android / android-components / components / ui / tabcounter / build.gradle
blob530e4f5105991f4be55c70d07617f45183ad7aba
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'
7 apply plugin: 'kotlin-kapt'
9 android {
10     compileSdkVersion config.compileSdkVersion
12     defaultConfig {
13         minSdkVersion config.minSdkVersion
14         targetSdkVersion config.targetSdkVersion
15     }
17     buildTypes {
18         release {
19             minifyEnabled false
20             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
21         }
22     }
24     buildFeatures {
25         viewBinding true
26     }
29 dependencies {
30     implementation project(':support-ktx')
31     implementation project(':support-utils')
33     implementation Dependencies.kotlin_stdlib
34     implementation Dependencies.androidx_core_ktx
35     implementation project(':concept-menu')
36     implementation project(':browser-menu2')
37     implementation project(':support-base')
39     testImplementation project(":support-test")
41     testImplementation Dependencies.androidx_test_junit
42     testImplementation Dependencies.testing_robolectric
43     testImplementation Dependencies.testing_mockito
46 apply from: '../../../publish.gradle'
47 ext.configurePublish(config.componentsGroupId, archivesBaseName, project.ext.description)