From dc514fa396ad9a2c1b19b283c6cbfbec73b5f43e Mon Sep 17 00:00:00 2001 From: Artem Daugel-Dauge Date: Mon, 9 Jan 2023 19:01:49 +0000 Subject: [PATCH] Deprecate useLibraries() ^KT-55801 Merge-request: KT-MR-8220 Merged-by: Artem Daugel-Dauge --- .../gradle/targets/native/cocoapods/CocoapodsExtension.kt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/targets/native/cocoapods/CocoapodsExtension.kt b/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/targets/native/cocoapods/CocoapodsExtension.kt index 30a8e2ae37f..1ca40309180 100644 --- a/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/targets/native/cocoapods/CocoapodsExtension.kt +++ b/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/targets/native/cocoapods/CocoapodsExtension.kt @@ -53,7 +53,12 @@ abstract class CocoapodsExtension @Inject constructor(private val project: Proje /** * Setup plugin to generate synthetic xcodeproj compatible with static libraries + * + * This option is not supported and scheduled to be removed. If you are using this please + * file an issue with your case to [https://kotl.in/issue](https://kotl.in/issue) */ + @Suppress("DeprecatedCallableAddReplaceWith") + @Deprecated("This option is not supported and scheduled to be removed") fun useLibraries() { useLibraries = true }