-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix a couple of warnings in the sample app after pod install (#146)
* Fix a couple of warnings in the sample app after pod install * Fix swift sample app build and a couple of cocoapod warnings
- Loading branch information
Showing
9 changed files
with
47 additions
and
44 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,31 @@ | ||
# Uncomment the next line to define a global platform for your project | ||
platform :ios, '11.0' | ||
platform :ios, '12.0' | ||
|
||
target 'SwiftExampleApp' do | ||
# Comment the next line if you don't want to use dynamic frameworks | ||
use_frameworks! | ||
use_frameworks! | ||
inhibit_all_warnings! | ||
|
||
# Pods for SwiftExampleApp | ||
target 'SwiftExampleApp' do | ||
# pod 'Judo3DS2_iOS', :path => '../../../Judo3DS2-iOS-Source' | ||
pod 'Judo3DS2_iOS', '1.0.1' | ||
pod 'JudoKit-iOS', :path => '../../' | ||
|
||
pod 'InAppSettingsKit' | ||
pod 'CocoaDebug' | ||
pod 'InAppSettingsKit', '3.3.6' | ||
pod 'CocoaDebug', '1.7.2' | ||
pod 'SwiftLint' | ||
|
||
target 'SwiftExampleAppTests' do | ||
inherit! :search_paths | ||
# Pods for testing | ||
end | ||
|
||
target 'SwiftExampleAppUITests' 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 'SWIFT_VERSION' | ||
# https://www.jessesquires.com/blog/2020/07/20/xcode-12-drops-support-for-ios-8-fix-for-cocoapods/ | ||
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET' | ||
end | ||
end | ||
end |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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