From 2428c180c23badf8b6e0f49fd09ea77c815962ef Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Mon, 17 Aug 2020 18:03:18 +0200 Subject: [PATCH] Suppress warning on usage of old MPP in kotlin-stdlib --- gradle.properties | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index e99e1401606..f6f3ff3c88a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -30,4 +30,7 @@ kotlin.build.publishing.attempts=20 # Don't add the Kotlin standard library dependencies by default # TODO: add this flag in a granular way to the modules that don't need stdlib? -kotlin.stdlib.default.dependency=false \ No newline at end of file +kotlin.stdlib.default.dependency=false + +# Suppress the deprecation warning about using 'org.jetbrains.kotlin.platform.*' in kotlin-stdlib +kotlin.internal.mpp12x.deprecation.suppress=true