build.gradle (787B)
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 buildFeatures { 10 viewBinding = true 11 } 12 13 namespace = 'mozilla.components.support.license' 14 } 15 16 dependencies { 17 implementation libs.androidx.annotation 18 implementation libs.androidx.core 19 implementation libs.androidx.fragment 20 implementation libs.kotlinx.coroutines 21 implementation libs.google.material 22 } 23 24 apply from: '../../../common-config.gradle' 25 apply from: '../../../publish.gradle' 26 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)