Skip to content

Instantly share code, notes, and snippets.

@kishikawakatsumi
Created November 23, 2018 08:07
Show Gist options
  • Select an option

  • Save kishikawakatsumi/598b1b8faa82cecae4c0d6026a395d70 to your computer and use it in GitHub Desktop.

Select an option

Save kishikawakatsumi/598b1b8faa82cecae4c0d6026a395d70 to your computer and use it in GitHub Desktop.
platform :ios, '10.3'
install! 'cocoapods', integrate_targets: false
inhibit_all_warnings!
use_modular_headers!
target 'Shared' do
use_frameworks!
pod 'Firebase/Messaging'
pod 'Firebase/InAppMessagingDisplay'
pod 'Firebase/Firestore'
pod 'Firebase/Auth'
pod 'Firebase/Performance'
end
target 'Shared-Static' do
pod 'Shimmer'
pod 'DeallocationChecker'
pod 'GoogleAnalytics'
end
target 'Tests' do
use_frameworks!
pod 'Mockingjay'
pod 'iOSSnapshotTestCase'
end
pod 'SwiftGen'
pod 'SwiftLint'
pod 'LicensePlist'
pre_install do |installer|
installer.pod_targets.each do |target|
target.root_spec.swift_version = '4.2'
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'] = '10.3'
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment