diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-02-23 14:25:03 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-23 14:25:03 +0530 |
commit | acc448ce740b3756c622daf35d7be8372e76cebb (patch) | |
tree | d826cfae39eea5c71104e5a13cd94eea1783e36b /app/build.gradle.kts | |
parent | f08ad35d2e26b3f222cca4f973a865bdd815eeb3 (diff) |
Use explicit Gradle tasks to handle build artifact collection (#1745)
Diffstat (limited to 'app/build.gradle.kts')
-rw-r--r-- | app/build.gradle.kts | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts index ebf9a98c..b3414460 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -2,7 +2,6 @@ * Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved. * SPDX-License-Identifier: GPL-3.0-only */ -import com.android.build.gradle.internal.api.BaseVariantOutputImpl plugins { id("com.github.android-password-store.android-application") @@ -11,6 +10,7 @@ plugins { id("com.github.android-password-store.kotlin-kapt") id("com.github.android-password-store.versioning-plugin") id("com.github.android-password-store.sentry") + id("com.github.android-password-store.rename-artifacts") id("dagger.hilt.android.plugin") } @@ -28,13 +28,6 @@ fun isSnapshot(): Boolean { } android { - if (isSnapshot()) { - applicationVariants.all { - outputs.all { - (this as BaseVariantOutputImpl).outputFileName = "aps-${flavorName}_$versionName.apk" - } - } - } compileOptions { isCoreLibraryDesugaringEnabled = true } defaultConfig { |