25 lines
628 B
Ruby
25 lines
628 B
Ruby
# Uncomment the next line to define a global platform for your project
|
|
platform :ios, '11.0'
|
|
source 'https://github.com/CocoaPods/Specs.git'
|
|
|
|
|
|
target 'MyAmplifyApp' do
|
|
# Comment the next line if you don't want to use dynamic frameworks
|
|
use_frameworks!
|
|
pod 'Amplify'
|
|
pod 'AmplifyPlugins/AWSAPIPlugin'
|
|
pod 'AmplifyPlugins/AWSDataStorePlugin'
|
|
|
|
target 'MyAmplifyAppUITests' do
|
|
# Pods for testing
|
|
end
|
|
|
|
end
|
|
|
|
post_install do |installer|
|
|
installer.pods_project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
|
|
end
|
|
end
|
|
end |