| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 | platform :ios, '12.0'post_install do |installer|  installer.pods_project.targets.each do |target|    target.build_configurations.each do |config|      config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'No'    end  endendtarget 'Asteria' do  use_frameworks!  pod 'AFNetworking'  pod 'MBProgressHUD'  pod 'MJRefresh'  pod 'MJExtension'  pod 'SDWebImage'  pod 'Masonry'  # 键盘管理  pod 'IQKeyboardManager'  # iOS自定义Badge组件, 支持UIView, UITabBarItem, UIBarButtonItem, 支持Objective-C/Swift  pod 'PPBadgeView'  #可以block使用的选择器  pod 'Toast'  # 检测网络状态  pod 'Reachability'  #评价---星星  pod 'HCSStarRatingView', '~> 1.5'    pod 'BraintreeDropIn'#  pod 'PayPalCheckout', '0.102.0'  pod 'Bugly'    pod 'FBSDKLoginKit'    pod 'GoogleSignIn'  pod 'GKPhotoBrowser'    pod 'WMBase', :path =>"../WMBase"pod 'OneSignalXCFramework', '>= 3.0.0', '< 4.0'# 数据分析# Add the Firebase pod for Google Analyticspod 'FirebaseAnalytics'# Google 地点自动补齐pod 'GooglePlaces'# For Analytics without IDFA collection capability, use this pod instead# pod ‘Firebase/AnalyticsWithoutAdIdSupport’# Add the pods for any other Firebase products you want to use in your app# For example, to use Firebase Authentication and Cloud Firestorepod 'FirebaseCore'#, :git => 'https://github.com/firebase/firebase-ios-sdk.git', :branch => 'master'pod 'FirebaseFirestore'#, :git => 'https://github.com/firebase/firebase-ios-sdk.git', :branch => 'master'  target 'NotificationServiceExtension' do #'OneSignalNotificationServiceExtension' do    # Comment the next line if you don't want to use dynamic frameworks    use_frameworks!    pod 'OneSignalXCFramework', '>= 3.0.0', '< 4.0'  end      end
 |