1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- 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
- end
- end
- target '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使用的 Toast 提示
- pod 'Toast'
- # 检测网络状态
- pod 'Reachability'
- pod 'CTMediator'
- #评价---星星
- pod 'HCSStarRatingView', '~> 1.5'
-
- 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 Analytics
- pod '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 Firestore
- pod '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
|