build.gradle (1312B)
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/. */ 4 5 apply plugin: 'com.android.library' 6 apply plugin: 'kotlin-android' 7 8 android { 9 namespace = 'mozilla.components.browser.storage.sync.logins' 10 } 11 12 dependencies { 13 // Types defined in concept-sync are part of this module's public API. 14 api project(':components:concept-sync') 15 api project(':components:lib-dataprotect') 16 17 // Parts of this dependency are typealiase'd or are otherwise part of this module's public API. 18 api (ComponentsDependencies.mozilla_appservices_logins) { 19 // Use our own version of the Glean dependency, 20 // which might be different from the version declared by A-S. 21 exclude group: 'org.mozilla.telemetry', module: 'glean' 22 } 23 api ComponentsDependencies.mozilla_appservices_sync15 24 25 implementation project(':components:concept-storage') 26 implementation project(':components:support-utils') 27 28 implementation libs.kotlinx.coroutines 29 implementation libs.mozilla.glean 30 } 31 32 apply from: '../../../common-config.gradle' 33 apply from: '../../../publish.gradle' 34 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)