[components] For https://github.com/mozilla-mobile/android-components/issues/10404...
[gecko.git] / mobile / android / android-components / components / feature / intent / build.gradle
blob0a1523f555276d86a6d87cb3719dd9bcb1892b1b
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     }
25 dependencies {
26     implementation project(':concept-engine')
27     implementation project(':browser-state')
28     implementation project(':feature-search')
29     implementation project(':feature-session')
30     implementation project(':feature-tabs')
31     implementation project(':support-utils')
32     implementation project(':support-ktx')
33     implementation Dependencies.kotlin_stdlib
35     testImplementation project(':support-test')
36     testImplementation project(':support-test-libstate')
37     testImplementation Dependencies.androidx_browser
38     testImplementation Dependencies.androidx_test_junit
39     testImplementation Dependencies.testing_robolectric
40     testImplementation Dependencies.testing_mockito
41     testImplementation Dependencies.kotlin_coroutines
42     testImplementation Dependencies.testing_coroutines
45 apply from: '../../../publish.gradle'
46 ext.configurePublish(config.componentsGroupId, archivesBaseName, project.ext.description)