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'
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)