From 99e9974c06e0c5a10ecfb5385e3b74912e781f7e Mon Sep 17 00:00:00 2001 From: Michel Kraemer Date: Wed, 2 Feb 2022 10:32:10 -0800 Subject: [PATCH] Update gradle-download-task to 5.0.1 (#32995) Summary: This enables concurrent task exection and parallel downloads See also https://github.com/michel-kraemer/gradle-download-task/issues/138 ## Changelog [General] [Changed] - Update gradle-download-task to 5.0.1 to support concurrent downloads Pull Request resolved: https://github.com/facebook/react-native/pull/32995 Test Plan: Build runs successfully. Reviewed By: ShikaSD Differential Revision: D33892817 Pulled By: cortinico fbshipit-source-id: 515443573e17a5c2b16a1cf3cea4bf3c5c2d96a7 --- build.gradle.kts | 2 +- template/android/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 4725963eae0019..17226589b971d0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -16,7 +16,7 @@ buildscript { dependencies { val kotlin_version: String by project classpath("com.android.tools.build:gradle:7.0.4") - classpath("de.undercouch:gradle-download-task:4.1.2") + classpath("de.undercouch:gradle-download-task:5.0.1") classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version") // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/template/android/build.gradle b/template/android/build.gradle index 5dfc68a632ee6a..1946b1c1152c45 100644 --- a/template/android/build.gradle +++ b/template/android/build.gradle @@ -24,7 +24,7 @@ buildscript { dependencies { classpath("com.android.tools.build:gradle:7.0.4") classpath("com.facebook.react:react-native-gradle-plugin") - classpath("de.undercouch:gradle-download-task:4.1.2") + classpath("de.undercouch:gradle-download-task:5.0.1") // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files }