Podfile 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. #评价---星星
  26. pod 'HCSStarRatingView', '~> 1.5'
  27. pod 'Bugly'
  28. pod 'FBSDKLoginKit'
  29. pod 'GoogleSignIn'
  30. pod 'GKPhotoBrowser'
  31. pod 'WMBase', :path =>"../WMBase"
  32. pod 'OneSignalXCFramework', '>= 3.0.0', '< 4.0'
  33. # 数据分析
  34. # Add the Firebase pod for Google Analytics
  35. pod 'FirebaseAnalytics'
  36. # Google 地点自动补齐
  37. pod 'GooglePlaces'
  38. # For Analytics without IDFA collection capability, use this pod instead
  39. # pod ‘Firebase/AnalyticsWithoutAdIdSupport’
  40. # Add the pods for any other Firebase products you want to use in your app
  41. # For example, to use Firebase Authentication and Cloud Firestore
  42. pod 'FirebaseCore'#, :git => 'https://github.com/firebase/firebase-ios-sdk.git', :branch => 'master'
  43. pod 'FirebaseFirestore'#, :git => 'https://github.com/firebase/firebase-ios-sdk.git', :branch => 'master'
  44. target 'NotificationServiceExtension' do #'OneSignalNotificationServiceExtension' do
  45. # Comment the next line if you don't want to use dynamic frameworks
  46. use_frameworks!
  47. pod 'OneSignalXCFramework', '>= 3.0.0', '< 4.0'
  48. end
  49. end