Я использую мою личную библиотеку pod, и когда я заканчиваю запуск pod install, я нахожу потерянный файл конфигурации, такой как xxx.moulemap, xxx-umbrella.h. - PullRequest
0 голосов
/ 02 июня 2019

Я делаю приватную библиотеку pod, все работает нормально, но я нахожу что-то другое с другой публичной библиотекой pod, при установке моей библиотеки нет xxx.modulemap, xxx-umbrella.h, xxx-prefix.h и некоторыхдругие файлы!Я действительно хочу знать, что мне не хватает, кто-то скажет, пожалуйста?

мой файл podSpec

Pod::Spec.new do |s|
  s.name             = 'Trojan'
  s.version          = '0.0.7'
  s.summary          = 'A short description of Trojan.'

# This description is used to generate tags and improve search results.
#   * Think: What does it do? Why did you write it? What is the focus?
#   * Try to keep it short, snappy and to the point.
#   * Write the description between the DESC delimiters below.
#   * Finally, don't worry about the indent, CocoaPods strips it!

  s.description      = <<-DESC
TODO: Add long description of the pod here.
                       DESC

  s.homepage         = 'https://xxxxxxx'
  # s.screenshots     = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
  s.license          = { :type => 'MIT', :file => 'LICENSE' }
  s.author           = { 'xxxx' => 'xxxx.com' }
  s.source           = { :git => 'http://gitlab.duokesoft.com/Repity/trojan.git', :tag => s.version.to_s }
  # s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'

  s.ios.deployment_target = '8.0'

  s.source_files = 'Trojan/Classes/**/*.{h,m}'

  s.vendored_frameworks = 'Trojan/Classes/**/*.framework'

  s.vendored_libraries = 'Trojan/Classes/**/*.a'

#  s.resource_bundles = {
#     'Trojan' => ['Trojan/Classes/**/*']
#   }

  # s.public_header_files = 'Pod/Classes/**/*.h'
  # s.frameworks = 'UIKit', 'MapKit'
  # s.dependency 'AFNetworking', '~> 2.3'
end

Я просто хочу знать, что мне не хватает, как генерировать эти файлы?

...