XCCodePaws.podspec 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. #
  2. # Be sure to run `pod lib lint XCCodePaws.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 = 'XCCodePaws'
  10. s.version = '0.1.3'
  11. s.summary = 'Code Paws'
  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. Code Paws Repo
  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/XCCodePaws.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 = 'XCCodePaws/Classes/**/*'
  28. s.resource_bundles = {
  29. 'XCCodePaws' => ['XCCodePaws/Assets/Model', 'XCCodePaws/Assets/Assets.xcassets']
  30. }
  31. s.public_header_files = 'XCCodePaws/Classes/Sources/Public/**/*.h'
  32. s.private_header_files = 'XCCodePaws/Classes/Sources/Private/**/*.h'
  33. s.dependency 'XCPublicModule', '>=1.11.0'
  34. s.dependency 'Masonry'
  35. s.dependency 'XCLive2D'
  36. s.dependency 'XCModuleLoader'
  37. s.dependency 'XCUserBehaviorCollector'
  38. s.dependency 'YYModel'
  39. s.dependency 'XCNotificationCenter'
  40. s.dependency 'XCMDService'
  41. s.dependency 'XCHotInterop'
  42. s.dependency 'YYText'
  43. s.dependency 'XCMarkdownParser'
  44. s.frameworks = 'UIKit', 'JavaScriptCore'
  45. s.swift_versions = '5.0'
  46. # s.public_header_files = 'Pod/Classes/**/*.h'
  47. # s.frameworks = 'UIKit', 'MapKit'
  48. # s.dependency 'AFNetworking', '~> 2.3'
  49. end