XCWebViewCore.podspec 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #
  2. # Be sure to run `pod lib lint XCWebViewCore.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 = 'XCWebViewCore'
  10. s.version = '1.3.3'
  11. s.summary = '基于WebKit,一个高性能业务侧WebView实现'
  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. 基于WebKit,一个高性能、业务可定制的WebView实现,支持XCMLSchemeDispatcher
  19. DESC
  20. s.homepage = 'https://git.forgetive.org'
  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.org/XCAppCollection/XCWebViewCore.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.swift_versions = '4.0'
  28. s.source_files = 'XCWebViewCore/Classes/**/*'
  29. s.dependency 'XCPublicModule'
  30. s.dependency 'XCModuleLoader'
  31. s.dependency 'XCNotificationCenter'
  32. s.dependency 'Masonry'
  33. s.dependency 'YYModel'
  34. s.dependency 'XCRouterInterface'
  35. s.dependency 'XCUserBehaviorCollector'
  36. s.dependency 'XCTreeLang'
  37. s.frameworks = 'UIKit', 'WebKit'
  38. s.resource_bundles = {
  39. 'XCWKSDK' => [
  40. 'XCWebViewCore/Assets/*.js'
  41. ]
  42. }
  43. # s.public_header_files = 'Pod/Classes/**/*.h'
  44. # s.frameworks = 'UIKit', 'MapKit'
  45. # s.dependency 'AFNetworking', '~> 2.3'
  46. end