-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathPodfile
More file actions
31 lines (27 loc) · 907 Bytes
/
Podfile
File metadata and controls
31 lines (27 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Uncomment the next line to define a global platform for your project
# platform :ios, '12.0'
target 'Segment AI' do
use_frameworks!
# Pods for ios_ai_cutter
pod 'FLAnimatedImage', '~> 1.0'
pod 'Google-Mobile-Ads-SDK'
pod 'GoogleMobileAdsMediationFacebook'
pod 'GoogleMobileAdsMediationMintegral'
pod 'GoogleMobileAdsMediationAppLovin'
pod 'GoogleMobileAdsMediationInMobi'
pod 'FBAudienceNetwork'
pod 'Alamofire'
# Pod for Photo Editing from colorful-room + PixelEnginePackage
pod 'QCropper'
# !cause error!
# pod 'LazyViewSwiftUI'
end
# This will update all the Pod targets at once to your desired version.
# Silence the IPHONEOS_DEPLOYMENT_TARGET warnings
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
end