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…
Reference in New Issue