syncAndroidSdk gradle task should resolve its dependencies lazily

GitOrigin-RevId: d94375fcd043778be5118565b048da47157674cf
This commit is contained in:
Andrei Kuznetsov
2019-11-07 02:40:58 +00:00
committed by intellij-monorepo-bot
parent 015f0f4126
commit 53da7d70ad
+1 -1
View File
@@ -77,7 +77,7 @@ task syncKotlinPluginForAndroid(dependsOn: [setupKotlinPlugin, syncOfflineRepo],
}
task syncAndroidSdk(dependsOn: [configurations.androidSdk, syncOfflineRepo], type: Sync) {
from tarTree(resources.gzip(configurations.androidSdk.singleFile))
from { tarTree(resources.gzip(configurations.androidSdk.singleFile)) }
into "$buildDir/android-sdk/prebuilts/studio/sdk"
}