From 59e71018daf0b0e9baa9ed75bfd75e90f322825a Mon Sep 17 00:00:00 2001 From: Pavel Punegov Date: Wed, 29 Jan 2020 19:25:30 +0300 Subject: [PATCH] Remove defaultTasks to fix IDEA-231214 issue that make these tasks be build during project import --- build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index b98b5cae865..ca196d6bee8 100644 --- a/build.gradle +++ b/build.gradle @@ -52,7 +52,8 @@ apply plugin: org.jetbrains.kotlin.GradleWrappers wrappers.projects = ['samples', 'samples/calculator', 'samples/androidNativeActivity', 'samples/cocoapods/kotlin-library'] wrapper.distributionType = Wrapper.DistributionType.ALL -defaultTasks 'clean', 'dist' +// FIXME: Remove until IDEA-231214 is fixed. +//defaultTasks 'clean', 'dist' convention.plugins.platformInfo = PlatformInfo