fix missing android dependency download task
This commit is contained in:
parent
0c453b6118
commit
5e7fa0edc8
|
@ -21,6 +21,18 @@ buildscript {
|
||||||
}
|
}
|
||||||
|
|
||||||
allprojects {
|
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 {
|
repositories {
|
||||||
mavenLocal()
|
mavenLocal()
|
||||||
google()
|
google()
|
||||||
|
|
Loading…
Reference in New Issue