trisquel-icecat/icecat/mobile/android/android-components/components/feature/awesomebar/build.gradle
2025-10-06 02:35:48 -06:00

60 lines
1.9 KiB
Groovy

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android {
defaultConfig {
minSdkVersion = config.minSdkVersion
compileSdk = config.compileSdkVersion
targetSdkVersion = config.targetSdkVersion
}
buildTypes {
release {
minifyEnabled = false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
namespace = 'mozilla.components.feature.awesomebar'
}
dependencies {
implementation project(':concept-awesomebar')
implementation project(':concept-fetch')
implementation project(':concept-engine')
implementation project(':concept-toolbar')
implementation project(':concept-storage')
implementation project(':browser-state')
implementation project(':browser-storage-sync')
implementation project(':browser-icons')
implementation project(':feature-top-sites')
implementation project(':feature-tabs')
implementation project(':feature-session')
implementation project(':feature-search')
implementation project(':support-ktx')
implementation project(':support-utils')
implementation project(':ui-icons')
implementation libs.androidx.core.ktx
testImplementation project(':support-test')
testImplementation project(':lib-fetch-httpurlconnection')
testImplementation libs.androidx.test.core
testImplementation libs.androidx.test.junit
testImplementation libs.testing.robolectric
testImplementation libs.testing.mockwebserver
testImplementation libs.testing.coroutines
}
apply from: '../../../android-lint.gradle'
apply from: '../../../publish.gradle'
ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)