2020-07-23 09:09:36 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2014-2020 The Android Password Store Authors. All Rights Reserved.
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
*/
|
|
|
|
import com.android.build.gradle.internal.api.BaseVariantOutputImpl
|
|
|
|
|
|
|
|
plugins {
|
2020-10-16 15:18:11 +00:00
|
|
|
id("com.android.application")
|
2020-07-23 09:09:36 +00:00
|
|
|
kotlin("android")
|
2020-10-16 15:18:11 +00:00
|
|
|
`aps-plugin`
|
2020-12-30 10:06:51 +00:00
|
|
|
`crowdin-plugin`
|
|
|
|
}
|
|
|
|
|
|
|
|
configure<CrowdinExtension> {
|
|
|
|
projectName = "android-password-store"
|
2020-07-23 09:09:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
if (isSnapshot()) {
|
|
|
|
applicationVariants.all {
|
|
|
|
outputs.all {
|
|
|
|
(this as BaseVariantOutputImpl).outputFileName = "aps-${flavorName}_$versionName.apk"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId = "dev.msfjarvis.aps"
|
2020-10-22 12:06:45 +00:00
|
|
|
versionCode = 2_00_00
|
|
|
|
versionName = "2.0.0-SNAPSHOT"
|
2020-10-16 15:18:11 +00:00
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
2020-07-23 09:09:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
isAbortOnError = true
|
|
|
|
isCheckReleaseBuilds = false
|
2020-09-22 03:48:00 +00:00
|
|
|
disable("MissingTranslation", "PluralsCandidate", "ImpliedQuantity")
|
2020-07-23 09:09:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
flavorDimensions("free")
|
|
|
|
productFlavors {
|
|
|
|
create("free") {
|
|
|
|
}
|
|
|
|
create("nonFree") {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compileOnly(Dependencies.AndroidX.annotation)
|
2020-11-24 21:59:43 +00:00
|
|
|
implementation(project(":autofill-parser"))
|
|
|
|
implementation(project(":openpgp-ktx"))
|
2020-07-23 09:09:36 +00:00
|
|
|
implementation(Dependencies.AndroidX.activity_ktx)
|
|
|
|
implementation(Dependencies.AndroidX.appcompat)
|
2020-11-02 19:25:37 +00:00
|
|
|
implementation(Dependencies.AndroidX.autofill)
|
2020-12-03 16:32:01 +00:00
|
|
|
implementation(Dependencies.AndroidX.biometric_ktx)
|
2020-07-23 09:09:36 +00:00
|
|
|
implementation(Dependencies.AndroidX.constraint_layout)
|
|
|
|
implementation(Dependencies.AndroidX.core_ktx)
|
|
|
|
implementation(Dependencies.AndroidX.documentfile)
|
|
|
|
implementation(Dependencies.AndroidX.fragment_ktx)
|
|
|
|
implementation(Dependencies.AndroidX.lifecycle_common)
|
|
|
|
implementation(Dependencies.AndroidX.lifecycle_livedata_ktx)
|
|
|
|
implementation(Dependencies.AndroidX.lifecycle_viewmodel_ktx)
|
|
|
|
implementation(Dependencies.AndroidX.material)
|
|
|
|
implementation(Dependencies.AndroidX.preference)
|
|
|
|
implementation(Dependencies.AndroidX.recycler_view)
|
|
|
|
implementation(Dependencies.AndroidX.recycler_view_selection)
|
|
|
|
implementation(Dependencies.AndroidX.security)
|
|
|
|
implementation(Dependencies.AndroidX.swiperefreshlayout)
|
|
|
|
|
|
|
|
implementation(Dependencies.Kotlin.Coroutines.android)
|
|
|
|
implementation(Dependencies.Kotlin.Coroutines.core)
|
|
|
|
|
|
|
|
implementation(Dependencies.FirstParty.zxing_android_embedded)
|
|
|
|
|
2021-01-12 05:49:28 +00:00
|
|
|
implementation(Dependencies.ThirdParty.bouncycastle)
|
2020-07-23 09:09:36 +00:00
|
|
|
implementation(Dependencies.ThirdParty.commons_codec)
|
2020-09-01 08:12:27 +00:00
|
|
|
implementation(Dependencies.ThirdParty.eddsa)
|
2020-07-23 09:09:36 +00:00
|
|
|
implementation(Dependencies.ThirdParty.fastscroll)
|
|
|
|
implementation(Dependencies.ThirdParty.jgit) {
|
|
|
|
exclude(group = "org.apache.httpcomponents", module = "httpclient")
|
|
|
|
}
|
2020-09-03 08:48:14 +00:00
|
|
|
implementation(Dependencies.ThirdParty.kotlin_result)
|
2021-01-12 05:49:28 +00:00
|
|
|
implementation(Dependencies.ThirdParty.modern_android_prefs)
|
2020-07-23 09:09:36 +00:00
|
|
|
implementation(Dependencies.ThirdParty.plumber)
|
|
|
|
implementation(Dependencies.ThirdParty.ssh_auth)
|
2021-01-12 05:49:28 +00:00
|
|
|
implementation(Dependencies.ThirdParty.sshj)
|
2020-07-23 09:09:36 +00:00
|
|
|
implementation(Dependencies.ThirdParty.timber)
|
|
|
|
implementation(Dependencies.ThirdParty.timberkt)
|
|
|
|
|
|
|
|
if (isSnapshot()) {
|
|
|
|
implementation(Dependencies.ThirdParty.leakcanary)
|
|
|
|
implementation(Dependencies.ThirdParty.whatthestack)
|
|
|
|
} else {
|
|
|
|
debugImplementation(Dependencies.ThirdParty.leakcanary)
|
|
|
|
debugImplementation(Dependencies.ThirdParty.whatthestack)
|
|
|
|
}
|
|
|
|
|
|
|
|
"nonFreeImplementation"(Dependencies.NonFree.google_play_auth_api_phone)
|
|
|
|
|
|
|
|
// Testing-only dependencies
|
|
|
|
androidTestImplementation(Dependencies.Testing.junit)
|
|
|
|
androidTestImplementation(Dependencies.Testing.kotlin_test_junit)
|
|
|
|
androidTestImplementation(Dependencies.Testing.AndroidX.runner)
|
|
|
|
androidTestImplementation(Dependencies.Testing.AndroidX.rules)
|
|
|
|
|
|
|
|
testImplementation(Dependencies.Testing.junit)
|
|
|
|
testImplementation(Dependencies.Testing.kotlin_test_junit)
|
|
|
|
}
|