summaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
authorTaco <SkytkRSfan3895@gmail.com>2024-02-25 07:39:44 -0500
committerGitHub <noreply@github.com>2024-02-25 13:39:44 +0100
commitef4af0d29d6742fe07e32971b55a1236f8ad08ab (patch)
treecba052d9ea7151e0112cde9c8e0852ace22f4cdd /app/build.gradle
parent55c72097b09b5d588670f6dc32d43ea1da8a2942 (diff)
downloadAntennaPod-ef4af0d29d6742fe07e32971b55a1236f8ad08ab.zip
Fix Gradle deprecations (#6939)
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle4
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 ->