Skip to content

Instantly share code, notes, and snippets.

@CH3COOH
Last active September 14, 2016 14:58
Show Gist options
  • Select an option

  • Save CH3COOH/2761d43b6786ce024e7472449937bd82 to your computer and use it in GitHub Desktop.

Select an option

Save CH3COOH/2761d43b6786ce024e7472449937bd82 to your computer and use it in GitHub Desktop.
Swift3.0でRealmのビルドが通らない
# Uncomment this line to define a global platform for your project
# platform :ios, '9.0'
target 'realm_sample' do
# Comment this line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for realm_sample
pod 'Realm', :git => 'https://github.com/realm/realm-cocoa.git', :submodules => true
pod 'RealmSwift', :git => 'https://github.com/realm/realm-cocoa.git', :submodules => true
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = "3.0"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment