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