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'
9 compileSdkVersion config.compileSdkVersion
12 minSdkVersion config.minSdkVersion
13 targetSdkVersion config.targetSdkVersion
19 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
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)