-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPodfile
More file actions
26 lines (23 loc) · 804 Bytes
/
Podfile
File metadata and controls
26 lines (23 loc) · 804 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
# Uncomment this line to define a global platform for your project
# platform :ios, '6.0'
# pod trunk push Theater.podspec --allow-warnings
load 'remove_unsupported_libraries.rb'
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '15.0'
use_frameworks!
target 'RemoteShutter' do
pod 'Google-Mobile-Ads-SDK', '~> 11.0'
pod 'GoogleUserMessagingPlatform', '~> 2.0'
pod 'SwiftLint', '~> 0.41.0'
pod 'FlatBuffers', :git => 'https://github.com/google/flatbuffers.git', :tag => 'v25.2.10'
target 'RemoteShutterTests' do
inherit! :search_paths
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
end
end
end