diff options
author | Taco <SkytkRSfan3895@gmail.com> | 2024-02-25 07:39:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-25 13:39:44 +0100 |
commit | ef4af0d29d6742fe07e32971b55a1236f8ad08ab (patch) | |
tree | cba052d9ea7151e0112cde9c8e0852ace22f4cdd /app | |
parent | 55c72097b09b5d588670f6dc32d43ea1da8a2942 (diff) | |
download | AntennaPod-ef4af0d29d6742fe07e32971b55a1236f8ad08ab.zip |
Fix Gradle deprecations (#6939)
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/build.gradle b/app/build.gradle index 9601377ac..d1059998f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -69,7 +69,7 @@ android { } androidResources { - additionalParameters "--no-version-vectors" + additionalParameters += ["--no-version-vectors"] } } @@ -150,7 +150,7 @@ if (project.hasProperty("antennaPodPlayPublisherCredentials")) { } } -task copyLicense(type: Copy) { +tasks.register('copyLicense', Copy) { from "../LICENSE" into "src/main/assets/" rename { String fileName -> |