Podfile 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. source 'https://cdn.cocoapods.org/'
  2. platform :ios, '15.0'
  3. inhibit_all_warnings!
  4. target 'Mastodon' do
  5. # Comment the next line if you don't want to use dynamic frameworks
  6. use_frameworks!
  7. # Pods for Mastodon
  8. # UI
  9. pod 'XLPagerTabStrip', '~> 9.0.0'
  10. # misc
  11. pod 'SwiftGen', '~> 6.6.2'
  12. pod 'Kanna', '~> 5.2.2'
  13. pod 'Sourcery', '~> 1.9'
  14. target 'MastodonTests' do
  15. inherit! :search_paths
  16. # Pods for testing
  17. end
  18. target 'MastodonUITests' do
  19. # Pods for testing
  20. end
  21. end
  22. post_install do |installer|
  23. installer.pods_project.targets.each do |target|
  24. target.build_configurations.each do |config|
  25. config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
  26. end
  27. # https://github.com/CocoaPods/CocoaPods/issues/11402#issuecomment-1201464693
  28. if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
  29. target.build_configurations.each do |config|
  30. config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
  31. end
  32. end
  33. end
  34. end