нет такого модуля PanModal - Xcode ios app swift - PullRequest
0 голосов
/ 09 мая 2020

Я очень новичок в разработке iOS (я исхожу из Android).
Я забираю проект у другого разработчика.
Я не могу собрать проект.

Я уже применил то, что видел через SO, например pod install, дважды проверьте, нет ли дубликата .xcodeproject.
Да, я открываю .xcworkspace, а не .xcodeproj.

когда я запускаю pod install:

Update all pods
Updating local specs repositories
Analyzing dependencies
Downloading dependencies
Generating Pods project
Integrating client project
Pod installation complete! There are 0 dependencies from the Podfile and 0 total pods installed.

[!] The Podfile does not contain any dependencies.

Я уже пытался удалить папку Pods, затем настроить pod pod install и открыть .xcworkspace. Не получилось.

Вот мой Podfile:

# Uncomment the next line to define a global platform for your project
platform :ios, '13.1'

target 'project_name' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!

  workspace './project_name.xcworkspace/'
  project './project_name.xcodeproj'

  # Pods for project_name

  target 'project_nameTests' do
    inherit! :search_paths
    # Pods for testing
  end

end

Любая помощь приветствуется

1 Ответ

2 голосов
/ 09 мая 2020

Добавьте pod 'PanModal' в свой подфайл и запустите pod install

# Uncomment the next line to define a global platform for your project
platform :ios, '13.1'

target 'project_name' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!

  pod 'PanModal'

  # Pods for project_name

  target 'project_nameTests' do
    inherit! :search_paths
    # Pods for testing
  end

end
...