build.gradle (856B)
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.lib.auth' 10 } 11 12 dependencies { 13 implementation project(':components:support-base') 14 15 implementation libs.androidx.biometric 16 implementation libs.androidx.core.ktx 17 18 testImplementation project(':components:support-test') 19 20 testImplementation libs.androidx.test.core 21 testImplementation libs.androidx.test.junit 22 testImplementation libs.robolectric 23 } 24 25 apply from: '../../../common-config.gradle' 26 apply from: '../../../publish.gradle' 27 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)