CocoaPods: Rename: simple framework -> regular framework

This commit is contained in:
Ilya Matveev
2019-03-20 19:24:13 +07:00
parent fd825e0601
commit 2e60b18570
@@ -113,7 +113,7 @@ open class KotlinCocoapodsPlugin: Plugin<Project> {
project.createSyncFrameworkTask(fatFrameworkTask.destinationDir, fatFrameworkTask) project.createSyncFrameworkTask(fatFrameworkTask.destinationDir, fatFrameworkTask)
} }
private fun createSyncForSimpleFramework( private fun createSyncForRegularFramework(
project: Project, project: Project,
kotlinExtension: KotlinMultiplatformExtension, kotlinExtension: KotlinMultiplatformExtension,
requestedBuildType: String, requestedBuildType: String,
@@ -140,7 +140,7 @@ open class KotlinCocoapodsPlugin: Plugin<Project> {
createSyncForFatFramework(project, kotlinExtension, requestedBuildType) createSyncForFatFramework(project, kotlinExtension, requestedBuildType)
} else { } else {
// A requested target doesn't require building a fat framework. // A requested target doesn't require building a fat framework.
createSyncForSimpleFramework(project, kotlinExtension, requestedBuildType, HostManager().targetByName(requestedTargetName)) createSyncForRegularFramework(project, kotlinExtension, requestedBuildType, HostManager().targetByName(requestedTargetName))
} }
} }