Podfile 1.7 KB

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