From 2e60b185701dcc3cc71ce9d5ea3994943e6c2ca0 Mon Sep 17 00:00:00 2001 From: Ilya Matveev Date: Wed, 20 Mar 2019 19:24:13 +0700 Subject: [PATCH] CocoaPods: Rename: simple framework -> regular framework --- .../kotlin/gradle/plugin/cocoapods/KotlinCocoapodsPlugin.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/tools/kotlin-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/gradle/plugin/cocoapods/KotlinCocoapodsPlugin.kt b/libraries/tools/kotlin-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/gradle/plugin/cocoapods/KotlinCocoapodsPlugin.kt index 560b9ab336d..9204b132e05 100644 --- a/libraries/tools/kotlin-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/gradle/plugin/cocoapods/KotlinCocoapodsPlugin.kt +++ b/libraries/tools/kotlin-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/gradle/plugin/cocoapods/KotlinCocoapodsPlugin.kt @@ -113,7 +113,7 @@ open class KotlinCocoapodsPlugin: Plugin { project.createSyncFrameworkTask(fatFrameworkTask.destinationDir, fatFrameworkTask) } - private fun createSyncForSimpleFramework( + private fun createSyncForRegularFramework( project: Project, kotlinExtension: KotlinMultiplatformExtension, requestedBuildType: String, @@ -140,7 +140,7 @@ open class KotlinCocoapodsPlugin: Plugin { createSyncForFatFramework(project, kotlinExtension, requestedBuildType) } else { // A requested target doesn't require building a fat framework. - createSyncForSimpleFramework(project, kotlinExtension, requestedBuildType, HostManager().targetByName(requestedTargetName)) + createSyncForRegularFramework(project, kotlinExtension, requestedBuildType, HostManager().targetByName(requestedTargetName)) } }