XCDesktopAppKit.podspec 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #
  2. # Be sure to run `pod lib lint XCDesktopAppKit.podspec' to ensure this is a
  3. # valid spec before submitting.
  4. #
  5. # Any lines starting with a # are optional, but their use is encouraged
  6. # To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
  7. #
  8. Pod::Spec.new do |s|
  9. s.name = 'XCDesktopAppKit'
  10. s.version = '1.0.0'
  11. s.summary = 'UIKit大屏幕适配基础设施'
  12. # This description is used to generate tags and improve search results.
  13. # * Think: What does it do? Why did you write it? What is the focus?
  14. # * Try to keep it short, snappy and to the point.
  15. # * Write the description between the DESC delimiters below.
  16. # * Finally, don't worry about the indent, CocoaPods strips it!
  17. s.description = <<-DESC
  18. iOS桌面级App基础设施,包含分屏控制器、多Tab容器等大屏幕容器,包含iPad、macOS多窗口App支持,同时适配小屏幕
  19. DESC
  20. s.homepage = 'https://git.forgetive.net'
  21. # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
  22. s.license = { :type => 'MIT', :file => 'LICENSE' }
  23. s.author = { 'xcbosa mbp16' => 'xcbosa@forgetive.org' }
  24. s.source = { :git => 'https://git.forgetive.net/XCAppCollection/XCDesktopAppKit.git', :tag => s.version.to_s }
  25. # s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
  26. s.ios.deployment_target = '14.0'
  27. s.source_files = 'XCDesktopAppKit/Classes/**/*'
  28. s.dependency 'XCPublicModule'
  29. s.dependency 'XCModuleLoader'
  30. s.dependency 'XCMenuBar'
  31. s.dependency 'XCTheme'
  32. s.dependency 'FastLayout'
  33. s.dependency 'Masonry'
  34. # s.resource_bundles = {
  35. # 'XCDesktopAppKit' => ['XCDesktopAppKit/Assets/*.png']
  36. # }
  37. # s.public_header_files = 'Pod/Classes/**/*.h'
  38. # s.frameworks = 'UIKit', 'MapKit'
  39. # s.dependency 'AFNetworking', '~> 2.3'
  40. end