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)
}
private fun createSyncForSimpleFramework(
private fun createSyncForRegularFramework(
project: Project,
kotlinExtension: KotlinMultiplatformExtension,
requestedBuildType: String,
@@ -140,7 +140,7 @@ open class KotlinCocoapodsPlugin: Plugin<Project> {
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))
}
}