Last active
September 14, 2016 14:58
-
-
Save CH3COOH/2761d43b6786ce024e7472449937bd82 to your computer and use it in GitHub Desktop.
Swift3.0でRealmのビルドが通らない
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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