From a86cae7aacc9837536e7d679870a57dcd0f45475 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 7c71d6288325d3..5d38d5a7afda93 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -13,7 +13,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 8a1d68f9c5c74b..3300863fdcdb16 100644 --- a/template/android/build.gradle +++ b/template/android/build.gradle @@ -15,7 +15,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 }