Skip to content

Commit e2f7204

Browse files
committed
fix typo
1 parent 0992a23 commit e2f7204

File tree

4 files changed

+25
-7
lines changed

4 files changed

+25
-7
lines changed

Example/EFIntroVideoViewController.xcodeproj/project.pbxproj

+10-3
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@
213213
isa = PBXProject;
214214
attributes = {
215215
LastSwiftUpdateCheck = 0720;
216-
LastUpgradeCheck = 0720;
216+
LastUpgradeCheck = 0800;
217217
ORGANIZATIONNAME = CocoaPods;
218218
TargetAttributes = {
219219
607FACCF1AFB9204008FA782 = {
@@ -421,8 +421,10 @@
421421
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
422422
CLANG_WARN_EMPTY_BODY = YES;
423423
CLANG_WARN_ENUM_CONVERSION = YES;
424+
CLANG_WARN_INFINITE_RECURSION = YES;
424425
CLANG_WARN_INT_CONVERSION = YES;
425426
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
427+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
426428
CLANG_WARN_UNREACHABLE_CODE = YES;
427429
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
428430
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
@@ -445,7 +447,7 @@
445447
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
446448
GCC_WARN_UNUSED_FUNCTION = YES;
447449
GCC_WARN_UNUSED_VARIABLE = YES;
448-
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
450+
IPHONEOS_DEPLOYMENT_TARGET = 9.1;
449451
MTL_ENABLE_DEBUG_INFO = YES;
450452
ONLY_ACTIVE_ARCH = YES;
451453
SDKROOT = iphoneos;
@@ -466,8 +468,10 @@
466468
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
467469
CLANG_WARN_EMPTY_BODY = YES;
468470
CLANG_WARN_ENUM_CONVERSION = YES;
471+
CLANG_WARN_INFINITE_RECURSION = YES;
469472
CLANG_WARN_INT_CONVERSION = YES;
470473
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
474+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
471475
CLANG_WARN_UNREACHABLE_CODE = YES;
472476
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
473477
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
@@ -483,9 +487,10 @@
483487
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
484488
GCC_WARN_UNUSED_FUNCTION = YES;
485489
GCC_WARN_UNUSED_VARIABLE = YES;
486-
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
490+
IPHONEOS_DEPLOYMENT_TARGET = 9.1;
487491
MTL_ENABLE_DEBUG_INFO = NO;
488492
SDKROOT = iphoneos;
493+
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
489494
VALIDATE_PRODUCT = YES;
490495
};
491496
name = Release;
@@ -494,6 +499,7 @@
494499
isa = XCBuildConfiguration;
495500
baseConfigurationReference = 1E962A99A9C86EDAC6367586 /* Pods-EFIntroVideoViewController_Example.debug.xcconfig */;
496501
buildSettings = {
502+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
497503
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
498504
INFOPLIST_FILE = EFIntroVideoViewController/Info.plist;
499505
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
@@ -508,6 +514,7 @@
508514
isa = XCBuildConfiguration;
509515
baseConfigurationReference = 4893D65D1F876C3C52225A48 /* Pods-EFIntroVideoViewController_Example.release.xcconfig */;
510516
buildSettings = {
517+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
511518
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
512519
INFOPLIST_FILE = EFIntroVideoViewController/Info.plist;
513520
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";

Example/EFIntroVideoViewController.xcodeproj/xcshareddata/xcschemes/EFIntroVideoViewController-Example.xcscheme

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "0720"
3+
LastUpgradeVersion = "0800"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

Example/Podfile

+9-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,14 @@ target 'EFIntroVideoViewController_Example' do
44
pod 'EFIntroVideoViewController', :path => '../'
55

66
target 'EFIntroVideoViewController_Tests' do
7-
inherit! :search_paths
8-
9-
7+
inherit! :search_paths
108
end
119
end
10+
11+
post_install do |installer|
12+
installer.pods_project.targets.each do |target|
13+
target.build_configurations.each do |config|
14+
config.build_settings['SWIFT_VERSION'] = '3.0'
15+
end
16+
end
17+
end

Example/Pods/Pods.xcodeproj/project.pbxproj

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)