Skip to content

Instantly share code, notes, and snippets.

@ralph-bergmann
Created January 25, 2021 01:22
Show Gist options
  • Save ralph-bergmann/c71093e7e407014a4b6cf40ce586e15a to your computer and use it in GitHub Desktop.
Save ralph-bergmann/c71093e7e407014a4b6cf40ce586e15a to your computer and use it in GitHub Desktop.
workspace 'app.xcworkspace'
platform :ios, '13.0'
use_frameworks!
def core_pods
pod 'SwiftDate', '~> 6.3.1'
end
def main_pods
# add pods for the main target here
end
target 'core' do
project 'core/core.xcodeproj'
core_pods
end
target 'main' do
project 'main/main.xcodeproj'
core_pods
main_pods
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment