mirror of
https://github.com/status-im/react-native-cameraroll.git
synced 2025-01-15 20:34:25 +00:00
fix missing android dependency download task
This commit is contained in:
parent
0c453b6118
commit
5e7fa0edc8
@ -21,6 +21,18 @@ buildscript {
|
||||
}
|
||||
|
||||
allprojects {
|
||||
task downloadDependencies() {
|
||||
description 'Download all dependencies to the Gradle cache'
|
||||
doLast {
|
||||
configurations.findAll().each { config ->
|
||||
if (config.name.contains("minReactNative") && config.canBeResolved) {
|
||||
print config.name
|
||||
print '\n'
|
||||
config.files
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
repositories {
|
||||
mavenLocal()
|
||||
google()
|
||||
|
Loading…
x
Reference in New Issue
Block a user