Source code
Revision control
Copy as Markdown
Other Tools
/*
* 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/.
*/
/*
* 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/.
*/
plugins {
alias(libs.plugins.kotlin.compose)
}
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android {
namespace 'org.mozilla.fenix.longfox'
compileSdk {
version = release(config.compileSdkMajorVersion) { minorApiLevel = config.compileSdkMinorVersion }
}
defaultConfig {
minSdk config.minSdkVersion
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}
}
dependencies {
implementation libs.androidx.activity.compose
implementation libs.androidx.appcompat
implementation platform(libs.androidx.compose.bom)
implementation libs.androidx.compose.animation
implementation libs.androidx.compose.foundation
implementation libs.androidx.compose.material.icons
implementation libs.androidx.compose.material3
implementation libs.androidx.compose.ui
implementation libs.androidx.compose.ui.tooling.preview
implementation libs.androidx.compose.ui.graphics
implementation libs.androidx.core.ktx
implementation libs.androidx.datastore.core
implementation libs.androidx.datastore.preferences
implementation libs.google.material
testImplementation libs.junit4
androidTestImplementation libs.androidx.test.junit
androidTestImplementation libs.androidx.test.espresso.core
debugImplementation libs.androidx.compose.ui.tooling
}