diff options
| author | Albin <albin@mullvad.net> | 2024-09-24 10:36:40 +0200 |
|---|---|---|
| committer | Albin <albin@mullvad.net> | 2024-09-24 10:49:46 +0200 |
| commit | c6edec6223c0fac78c5dbc2e084d1fa2df0c3a90 (patch) | |
| tree | 0834a63658561115ca650bd255dee7abc7dc1dc7 /android | |
| parent | 9b98f61e1b734d28d5884c665a22189e8889ed32 (diff) | |
| download | mullvadvpn-c6edec6223c0fac78c5dbc2e084d1fa2df0c3a90.tar.xz mullvadvpn-c6edec6223c0fac78c5dbc2e084d1fa2df0c3a90.zip | |
Fix bundle task aab path
Diffstat (limited to 'android')
| -rw-r--r-- | android/app/build.gradle.kts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index 03409dba86..811d9eef1f 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -227,7 +227,7 @@ android { val createDistBundle = tasks.register<Copy>("create${capitalizedVariantName}DistBundle") { - from("${layout.buildDirectory}/outputs/bundle/$variantName") + from("${layout.buildDirectory.get()}/outputs/bundle/$variantName") into("${rootDir.parent}/dist") include { it.name.endsWith(".aab") } rename { "$artifactName.aab" } |
