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'
23 namespace 'mozilla.components.service.contile'
27 implementation ComponentsDependencies.kotlin_stdlib
28 implementation ComponentsDependencies.kotlin_coroutines
29 implementation ComponentsDependencies.androidx_work_runtime
31 implementation project(':concept-fetch')
32 implementation project(':support-ktx')
33 implementation project(':support-base')
34 implementation project(':feature-top-sites')
36 testImplementation ComponentsDependencies.androidx_test_core
37 testImplementation ComponentsDependencies.androidx_test_junit
38 testImplementation ComponentsDependencies.androidx_work_testing
39 testImplementation ComponentsDependencies.testing_robolectric
40 testImplementation ComponentsDependencies.testing_mockito
41 testImplementation ComponentsDependencies.testing_coroutines
43 testImplementation project(':support-test')
46 apply from: '../../../android-lint.gradle'
47 apply from: '../../../publish.gradle'
48 ext.configurePublish(config.componentsGroupId, archivesBaseName, project.ext.description)