2024-01-03 01:31:45 +03:00
|
|
|
import com.google.firebase.crashlytics.buildtools.gradle.tasks.InjectMappingFileIdTask
|
|
|
|
import com.google.firebase.crashlytics.buildtools.gradle.tasks.UploadMappingFileTask
|
|
|
|
import com.google.gms.googleservices.GoogleServicesTask
|
|
|
|
|
2023-08-23 00:03:42 +03:00
|
|
|
plugins {
|
|
|
|
alias(libs.plugins.android.application)
|
2024-01-05 19:20:53 +03:00
|
|
|
// Crashlytics is enabled for all builds initially but removed for FDroid builds in gradle and
|
|
|
|
// standardDebug builds in the merged manifest.
|
2024-01-03 01:31:45 +03:00
|
|
|
alias(libs.plugins.crashlytics)
|
2023-08-23 00:03:42 +03:00
|
|
|
alias(libs.plugins.detekt)
|
|
|
|
alias(libs.plugins.hilt)
|
|
|
|
alias(libs.plugins.kotlin.android)
|
2023-09-05 23:44:50 +03:00
|
|
|
alias(libs.plugins.kotlin.parcelize)
|
2023-08-23 00:03:42 +03:00
|
|
|
alias(libs.plugins.kotlin.serialization)
|
2023-10-16 18:12:39 +03:00
|
|
|
alias(libs.plugins.kotlinx.kover)
|
2023-08-23 00:03:42 +03:00
|
|
|
alias(libs.plugins.ksp)
|
2024-01-03 01:31:45 +03:00
|
|
|
alias(libs.plugins.google.services)
|
2023-08-23 00:03:42 +03:00
|
|
|
kotlin("kapt")
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "com.x8bit.bitwarden"
|
|
|
|
compileSdk = libs.versions.compileSdk.get().toInt()
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId = "com.x8bit.bitwarden"
|
|
|
|
minSdk = libs.versions.minSdk.get().toInt()
|
|
|
|
targetSdk = libs.versions.targetSdk.get().toInt()
|
|
|
|
versionCode = 1
|
2023-10-12 19:22:52 +03:00
|
|
|
versionName = "1.0.0"
|
2023-08-23 00:03:42 +03:00
|
|
|
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
|
2023-09-19 21:17:29 +03:00
|
|
|
signingConfigs {
|
|
|
|
getByName("debug") {
|
|
|
|
keyAlias = "androiddebugkey"
|
|
|
|
keyPassword = "android"
|
|
|
|
storeFile = file("../keystores/debug.keystore")
|
|
|
|
storePassword = "android"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-23 00:03:42 +03:00
|
|
|
buildTypes {
|
2023-09-06 19:38:04 +03:00
|
|
|
debug {
|
|
|
|
applicationIdSuffix = ".dev"
|
2023-09-19 21:17:29 +03:00
|
|
|
signingConfig = signingConfigs.getByName("debug")
|
2023-09-06 19:38:04 +03:00
|
|
|
isDebuggable = true
|
2023-08-23 00:03:42 +03:00
|
|
|
isMinifyEnabled = false
|
2023-09-06 19:38:04 +03:00
|
|
|
}
|
|
|
|
release {
|
|
|
|
isDebuggable = false
|
|
|
|
isMinifyEnabled = true
|
2023-08-23 00:03:42 +03:00
|
|
|
proguardFiles(
|
|
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
|
|
"proguard-rules.pro"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2023-12-28 22:10:30 +03:00
|
|
|
|
|
|
|
flavorDimensions += listOf("mode")
|
|
|
|
productFlavors {
|
|
|
|
create("standard") {
|
2023-12-29 00:09:04 +03:00
|
|
|
isDefault = true
|
2023-12-28 22:10:30 +03:00
|
|
|
dimension = "mode"
|
|
|
|
}
|
|
|
|
create("fdroid") {
|
|
|
|
dimension = "mode"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-23 00:03:42 +03:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility(libs.versions.jvmTarget.get())
|
|
|
|
targetCompatibility(libs.versions.jvmTarget.get())
|
|
|
|
}
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = libs.versions.jvmTarget.get()
|
|
|
|
}
|
|
|
|
buildFeatures {
|
2023-10-30 23:47:54 +03:00
|
|
|
buildConfig = true
|
2023-08-23 00:03:42 +03:00
|
|
|
compose = true
|
|
|
|
}
|
|
|
|
composeOptions {
|
|
|
|
kotlinCompilerExtensionVersion = libs.versions.kotlinCompilerExtensionVersion.get()
|
|
|
|
}
|
|
|
|
packaging {
|
|
|
|
resources {
|
|
|
|
excludes += "/META-INF/{AL2.0,LGPL2.1}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@Suppress("UnstableApiUsage")
|
|
|
|
testOptions {
|
|
|
|
// Required for Robolectric
|
|
|
|
unitTests.isIncludeAndroidResources = true
|
|
|
|
unitTests.isReturnDefaultValues = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-01-03 01:31:45 +03:00
|
|
|
fun standardImplementation(dependencyNotation: Any) {
|
|
|
|
add("standardImplementation", dependencyNotation)
|
|
|
|
}
|
|
|
|
|
2023-08-23 00:03:42 +03:00
|
|
|
implementation(libs.androidx.activity.compose)
|
2023-10-11 18:37:03 +03:00
|
|
|
implementation(libs.androidx.browser)
|
2024-01-03 02:29:48 +03:00
|
|
|
implementation(libs.androidx.camera.camera2)
|
|
|
|
implementation(libs.androidx.camera.lifecycle)
|
|
|
|
implementation(libs.androidx.camera.view)
|
2023-08-23 00:03:42 +03:00
|
|
|
implementation(platform(libs.androidx.compose.bom))
|
|
|
|
implementation(libs.androidx.compose.animation)
|
|
|
|
implementation(libs.androidx.compose.material3)
|
|
|
|
implementation(libs.androidx.compose.runtime)
|
|
|
|
implementation(libs.androidx.compose.ui)
|
|
|
|
implementation(libs.androidx.compose.ui.graphics)
|
|
|
|
implementation(libs.androidx.compose.ui.tooling.preview)
|
|
|
|
implementation(libs.androidx.core.ktx)
|
|
|
|
implementation(libs.androidx.hilt.navigation.compose)
|
2023-08-25 16:54:18 +03:00
|
|
|
implementation(libs.androidx.lifecycle.runtime.compose)
|
2023-08-23 00:03:42 +03:00
|
|
|
implementation(libs.androidx.lifecycle.runtime.ktx)
|
|
|
|
implementation(libs.androidx.navigation.compose)
|
|
|
|
ksp(libs.androidx.room.compiler)
|
|
|
|
implementation(libs.androidx.room.ktx)
|
|
|
|
implementation(libs.androidx.room.runtime)
|
2023-09-28 22:18:03 +03:00
|
|
|
implementation(libs.androidx.splashscreen)
|
2023-09-15 00:27:34 +03:00
|
|
|
implementation(libs.bitwarden.sdk)
|
2023-08-23 00:03:42 +03:00
|
|
|
implementation(libs.bumptech.glide)
|
|
|
|
implementation(libs.google.hilt.android)
|
|
|
|
kapt(libs.google.hilt.compiler)
|
|
|
|
implementation(libs.jakewharton.retrofit.kotlinx.serialization)
|
2023-11-08 18:20:42 +03:00
|
|
|
implementation(libs.kotlinx.collections.immutable)
|
2023-08-23 00:03:42 +03:00
|
|
|
implementation(libs.kotlinx.coroutines.android)
|
|
|
|
implementation(libs.kotlinx.serialization)
|
|
|
|
implementation(libs.nulab.zxcvbn4j)
|
|
|
|
implementation(libs.square.okhttp)
|
|
|
|
implementation(libs.square.okhttp.logging)
|
|
|
|
implementation(libs.square.retrofit)
|
|
|
|
implementation(libs.zxing.zxing.core)
|
|
|
|
|
|
|
|
// For now we are restricted to running Compose tests for debug builds only
|
|
|
|
debugImplementation(libs.androidx.compose.ui.test.manifest)
|
|
|
|
debugImplementation(libs.androidx.compose.ui.tooling)
|
|
|
|
|
2024-01-03 01:31:45 +03:00
|
|
|
// Standard-specific flavor dependencies
|
|
|
|
standardImplementation(libs.google.firebase.cloud.messaging)
|
|
|
|
standardImplementation(platform(libs.google.firebase.bom))
|
|
|
|
standardImplementation(libs.google.firebase.crashlytics)
|
|
|
|
|
2023-08-23 00:03:42 +03:00
|
|
|
testImplementation(libs.androidx.compose.ui.test)
|
|
|
|
testImplementation(libs.google.hilt.android.testing)
|
|
|
|
testImplementation(libs.junit.junit5)
|
|
|
|
testImplementation(libs.junit.vintage)
|
|
|
|
testImplementation(libs.kotlinx.coroutines.test)
|
|
|
|
testImplementation(libs.mockk.mockk)
|
|
|
|
testImplementation(libs.robolectric.robolectric)
|
2023-08-25 16:54:47 +03:00
|
|
|
testImplementation(libs.square.okhttp.mockwebserver)
|
2023-08-23 00:03:42 +03:00
|
|
|
testImplementation(libs.square.turbine)
|
|
|
|
|
|
|
|
detektPlugins(libs.detekt.detekt.formatting)
|
|
|
|
detektPlugins(libs.detekt.detekt.rules)
|
|
|
|
}
|
|
|
|
|
|
|
|
detekt {
|
|
|
|
autoCorrect = true
|
|
|
|
config.from(files("$rootDir/detekt-config.yml"))
|
|
|
|
}
|
|
|
|
|
2023-10-16 18:12:39 +03:00
|
|
|
kover {
|
|
|
|
excludeJavaCode()
|
|
|
|
}
|
|
|
|
|
|
|
|
koverReport {
|
|
|
|
filters {
|
|
|
|
excludes {
|
|
|
|
annotatedBy(
|
|
|
|
// Compose previews
|
2023-12-05 03:40:37 +03:00
|
|
|
"androidx.compose.ui.tooling.preview.Preview",
|
|
|
|
// Manually excluded classes/files/etc.
|
|
|
|
"com.x8bit.bitwarden.data.platform.annotation.OmitFromCoverage"
|
2023-10-16 18:12:39 +03:00
|
|
|
)
|
|
|
|
classes(
|
|
|
|
// Navigation helpers
|
|
|
|
"*.*NavigationKt*",
|
|
|
|
// Composable singletons
|
|
|
|
"*.*ComposableSingletons*",
|
2023-10-16 21:52:18 +03:00
|
|
|
// Generated classes related to interfaces with default values
|
|
|
|
"*.*DefaultImpls*",
|
2023-10-16 18:12:39 +03:00
|
|
|
// OS-level components
|
|
|
|
"com.x8bit.bitwarden.BitwardenApplication",
|
|
|
|
"com.x8bit.bitwarden.MainActivity*",
|
|
|
|
// Empty Composables
|
|
|
|
"com.x8bit.bitwarden.ui.platform.feature.splash.SplashScreenKt",
|
2023-12-14 20:25:35 +03:00
|
|
|
// Databases
|
2023-12-16 02:59:27 +03:00
|
|
|
"*.database.*Database*",
|
|
|
|
"*.dao.*Dao*",
|
2023-10-16 18:12:39 +03:00
|
|
|
)
|
|
|
|
packages(
|
|
|
|
// Dependency injection
|
|
|
|
"*.di",
|
|
|
|
// Models
|
|
|
|
"*.model",
|
|
|
|
// Custom UI components
|
|
|
|
"com.x8bit.bitwarden.ui.platform.components",
|
|
|
|
// Theme-related code
|
|
|
|
"com.x8bit.bitwarden.ui.platform.theme",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-23 00:03:42 +03:00
|
|
|
tasks {
|
|
|
|
getByName("check") {
|
|
|
|
// Add detekt with type resolution to check
|
|
|
|
dependsOn("detektMain")
|
|
|
|
}
|
|
|
|
|
|
|
|
withType<io.gitlab.arturbosch.detekt.Detekt>().configureEach {
|
|
|
|
jvmTarget = libs.versions.jvmTarget.get()
|
|
|
|
}
|
|
|
|
withType<io.gitlab.arturbosch.detekt.DetektCreateBaselineTask>().configureEach {
|
|
|
|
jvmTarget = libs.versions.jvmTarget.get()
|
|
|
|
}
|
|
|
|
|
|
|
|
withType<Test> {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
}
|
2024-01-03 01:31:45 +03:00
|
|
|
|
|
|
|
afterEvaluate {
|
|
|
|
// Disable Fdroid-specific tasks that we want to exclude
|
|
|
|
val tasks = tasks.withType<GoogleServicesTask>() +
|
|
|
|
tasks.withType<InjectMappingFileIdTask>() +
|
|
|
|
tasks.withType<UploadMappingFileTask>()
|
|
|
|
tasks
|
|
|
|
.filter { it.name.contains("Fdroid") }
|
|
|
|
.forEach { it.enabled = false }
|
|
|
|
}
|