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'
10 minSdkVersion config.minSdkVersion
11 compileSdk config.compileSdkVersion
12 targetSdkVersion config.targetSdkVersion
18 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
27 kotlinCompilerExtensionVersion = Versions.compose_compiler
30 namespace 'mozilla.components.compose.browser.toolbar'
34 implementation project(":concept-engine")
35 implementation project(":browser-state")
36 implementation project(":feature-session")
37 implementation project(":ui-icons")
38 implementation ComponentsDependencies.androidx_compose_ui
39 implementation ComponentsDependencies.androidx_compose_ui_tooling_preview
40 implementation ComponentsDependencies.androidx_compose_foundation
41 implementation ComponentsDependencies.androidx_compose_material
43 debugImplementation ComponentsDependencies.androidx_compose_ui_tooling
45 testImplementation project(':support-test')
46 testImplementation ComponentsDependencies.androidx_compose_ui_test
47 testImplementation ComponentsDependencies.androidx_test_core
48 testImplementation ComponentsDependencies.androidx_test_junit
49 testImplementation ComponentsDependencies.testing_robolectric
52 apply from: '../../../android-lint.gradle'
53 apply from: '../../../publish.gradle'
54 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)