Podfile 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. platform :ios, '12.0'
  2. post_install do |installer|
  3. installer.aggregate_targets.each do |target|
  4. target.xcconfigs.each do |variant, xcconfig|
  5. xcconfig_path = target.client_root + target.xcconfig_relative_path(variant)
  6. IO.write(xcconfig_path, IO.read(xcconfig_path).gsub("DT_TOOLCHAIN_DIR", "TOOLCHAIN_DIR"))
  7. end
  8. end
  9. installer.pods_project.targets.each do |target|
  10. target.build_configurations.each do |config|
  11. config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'No'
  12. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
  13. end
  14. target.build_configurations.each do |config|
  15. if config.base_configuration_reference.is_a? Xcodeproj::Project::Object::PBXFileReference
  16. xcconfig_path = config.base_configuration_reference.real_path
  17. IO.write(xcconfig_path, IO.read(xcconfig_path).gsub("DT_TOOLCHAIN_DIR", "TOOLCHAIN_DIR"))
  18. end
  19. end
  20. end
  21. end
  22. source 'https://github.com/CocoaPods/Specs.git'
  23. target 'Asteria' do
  24. use_frameworks!
  25. pod 'BRPickerView'
  26. pod 'AFNetworking'
  27. pod 'MBProgressHUD'
  28. pod 'MJRefresh'
  29. pod 'MJExtension'
  30. pod 'SDWebImage'
  31. pod 'Masonry'
  32. # 键盘管理
  33. pod 'IQKeyboardManager'
  34. # iOS自定义Badge组件, 支持UIView, UITabBarItem, UIBarButtonItem, 支持Objective-C/Swift
  35. pod 'PPBadgeView'
  36. #可以block使用的 Toast 提示
  37. pod 'Toast'
  38. # 检测网络状态
  39. pod 'Reachability'
  40. pod 'CTMediator'
  41. pod 'FBSDKLoginKit' , '14.1.0'
  42. pod 'GoogleSignIn', '7.0.0'
  43. #评价---星星
  44. pod 'HCSStarRatingView', '~> 1.5'
  45. pod 'Bugly'
  46. pod 'GKPhotoBrowser'
  47. #评价---星星
  48. pod 'HCSStarRatingView', '~> 1.5'
  49. pod 'WMBase', :path =>"../WMBase"
  50. pod 'MKNetworkKit'
  51. pod 'LookinServer', :configurations => ['Debug']
  52. pod 'KlarnaMobileSDK'
  53. # pod 'PayPal-iOS-SDK'
  54. pod 'OneSignalXCFramework', '>= 3.0.0', '< 4.0'
  55. # 数据分析
  56. # Add the Firebase pod for Google Analytics
  57. pod 'FirebaseAnalytics'
  58. # Google 地点自动补齐
  59. pod 'GooglePlaces'
  60. # For Analytics without IDFA collection capability, use this pod instead
  61. # pod ‘Firebase/AnalyticsWithoutAdIdSupport’
  62. # Add the pods for any other Firebase products you want to use in your app
  63. # For example, to use Firebase Authentication and Cloud Firestore
  64. pod 'FirebaseCore'#, :git => 'https://github.com/firebase/firebase-ios-sdk.git', :branch => 'master'
  65. pod 'FirebaseFirestore'#, :git => 'https://github.com/firebase/firebase-ios-sdk.git', :branch => 'master'
  66. target 'NotificationServiceExtension' do #'OneSignalNotificationServiceExtension' do
  67. # Comment the next line if you don't want to use dynamic frameworks
  68. use_frameworks!
  69. pod 'OneSignalXCFramework', '>= 3.0.0', '< 4.0'
  70. end
  71. end