build.gradle (738B)
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 apply plugin: 'com.google.devtools.ksp' 8 9 android { 10 namespace = 'mozilla.components.feature.screendetection' 11 } 12 13 dependencies { 14 implementation project(':components:support-base') 15 16 testImplementation project(':components:support-test') 17 18 testImplementation libs.androidx.test.junit 19 } 20 21 apply from: '../../../common-config.gradle' 22 apply from: '../../../publish.gradle' 23 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)