Podfile 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. platform :ios, '12.0'
  2. post_install do |installer|
  3. installer.pods_project.targets.each do |target|
  4. target.build_configurations.each do |config|
  5. config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'No'
  6. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
  7. end
  8. end
  9. end
  10. target 'Asteria' do
  11. use_frameworks!
  12. pod 'BRPickerView'
  13. pod 'AFNetworking'
  14. pod 'MBProgressHUD'
  15. pod 'MJRefresh'
  16. pod 'MJExtension'
  17. pod 'SDWebImage'
  18. pod 'Masonry'
  19. # 键盘管理
  20. pod 'IQKeyboardManager'
  21. # iOS自定义Badge组件, 支持UIView, UITabBarItem, UIBarButtonItem, 支持Objective-C/Swift
  22. pod 'PPBadgeView'
  23. #可以block使用的 Toast 提示
  24. pod 'Toast'
  25. # 检测网络状态
  26. pod 'Reachability'
  27. pod 'CTMediator'
  28. #评价---星星
  29. pod 'HCSStarRatingView', '~> 1.5'
  30. pod 'Bugly'
  31. pod 'FBSDKLoginKit'
  32. pod 'GoogleSignIn'
  33. pod 'GKPhotoBrowser'
  34. pod 'WMBase', :path =>"../WMBase"
  35. pod 'OneSignalXCFramework', '>= 3.0.0', '< 4.0'
  36. # 数据分析
  37. # Add the Firebase pod for Google Analytics
  38. pod 'FirebaseAnalytics'
  39. # Google 地点自动补齐
  40. pod 'GooglePlaces'
  41. # For Analytics without IDFA collection capability, use this pod instead
  42. # pod ‘Firebase/AnalyticsWithoutAdIdSupport’
  43. # Add the pods for any other Firebase products you want to use in your app
  44. # For example, to use Firebase Authentication and Cloud Firestore
  45. pod 'FirebaseCore'#, :git => 'https://github.com/firebase/firebase-ios-sdk.git', :branch => 'master'
  46. pod 'FirebaseFirestore'#, :git => 'https://github.com/firebase/firebase-ios-sdk.git', :branch => 'master'
  47. target 'NotificationServiceExtension' do #'OneSignalNotificationServiceExtension' do
  48. # Comment the next line if you don't want to use dynamic frameworks
  49. use_frameworks!
  50. pod 'OneSignalXCFramework', '>= 3.0.0', '< 4.0'
  51. end
  52. end