Skip to content

Commit 54af1aa

Browse files
Kroach/oasis 2442 swift (#256)
* Update OptimizelyiOSDemoApp to Swift 4 * 'pod update' and Localytics version update * Localytics version update * Revert "Enabling Source Clear (#255)" This reverts commit 390856e. * Xcode 9.4 recommended upgrade to Pods project settings
1 parent 50bce78 commit 54af1aa

File tree

155 files changed

+4952
-3797
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

155 files changed

+4952
-3797
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ env:
1313
- SCHEME=OptimizelySDKTVOS-Universal TEST_SDK=appletvsimulator PLATFORM='tvOS Simulator' OS=9.2 NAME='Apple TV 1080p'
1414
before_install:
1515
- gem install slather --no-rdoc --no-ri --no-document --quiet
16-
addons:
17-
srcclr: true
1816
script:
1917
- pod spec lint --quick
2018
- if [[ "$TRAVIS_BRANCH" == "master" ]]; then xcodebuild test -quiet -workspace OptimizelySDK.xcworkspace -scheme $SCHEME -configuration Release CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -sdk $TEST_SDK -destination "platform=$PLATFORM,OS=$OS,name=$NAME" ONLY_ACTIVE_ARCH=YES | egrep -B 10 -A 10 "(error|warning|failed|crash|exit|FAILED|Failing|failures)"; fi

OptimizelyDemoApp/AppDelegate.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
9393
// ---- Amplitude ----
9494
let propertyKey : String! = "[Optimizely] " + experiment.experimentKey
9595
let identify : AMPIdentify = AMPIdentify()
96-
identify.set(propertyKey, value:variation.variationKey as NSObject!)
96+
identify.set(propertyKey, value:variation.variationKey as NSObject?)
9797
// Track impression event (optional)
9898
let eventIdentifier : String = "[Optimizely] " + experiment.experimentKey + " - " + variation.variationKey
9999
Amplitude.instance().logEvent(eventIdentifier)
@@ -103,7 +103,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
103103
let label : String = "Variation - " + variation.variationKey
104104
// Build and send a non-interaction Event
105105
let builder = GAIDictionaryBuilder.createEvent(withCategory: "Optimizely", action: action, label: label, value: nil).build()
106-
tracker?.send(builder as [NSObject : AnyObject]!)
106+
tracker?.send(builder as [NSObject : AnyObject]?)
107107
// ---- Mixpanel ----
108108
let mixpanel : MixpanelInstance = Mixpanel.mainInstance()
109109
mixpanel.registerSuperProperties([propertyKey: variation.variationKey])

OptimizelyDemoApp/OptimizelyDemoApp.xcodeproj/project.pbxproj

Lines changed: 12 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -345,8 +345,6 @@
345345
EA7000041E552EBD00590BEF /* Sources */,
346346
EA7000091E552EBD00590BEF /* Frameworks */,
347347
EA70000C1E552EBD00590BEF /* Resources */,
348-
EA7000131E552EBD00590BEF /* [CP] Embed Pods Frameworks */,
349-
EA7000141E552EBD00590BEF /* [CP] Copy Pods Resources */,
350348
EA7000151E552EBD00590BEF /* Embed Frameworks */,
351349
);
352350
buildRules = (
@@ -369,7 +367,6 @@
369367
EA70FFEB1E552E9E00590BEF /* Frameworks */,
370368
EA70FFEE1E552E9E00590BEF /* Resources */,
371369
EA70FFF61E552E9E00590BEF /* [CP] Embed Pods Frameworks */,
372-
EA70FFF71E552E9E00590BEF /* [CP] Copy Pods Resources */,
373370
EA299F031E55331000931399 /* Embed Frameworks */,
374371
);
375372
buildRules = (
@@ -394,10 +391,10 @@
394391
ORGANIZATIONNAME = Optimizely;
395392
TargetAttributes = {
396393
EA7000001E552EBD00590BEF = {
397-
LastSwiftMigration = 0820;
394+
LastSwiftMigration = 0940;
398395
};
399396
EA70FFE01E552E9E00590BEF = {
400-
LastSwiftMigration = 0820;
397+
LastSwiftMigration = 0940;
401398
};
402399
};
403400
};
@@ -513,36 +510,6 @@
513510
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
514511
showEnvVarsInLog = 0;
515512
};
516-
EA7000131E552EBD00590BEF /* [CP] Embed Pods Frameworks */ = {
517-
isa = PBXShellScriptBuildPhase;
518-
buildActionMask = 2147483647;
519-
files = (
520-
);
521-
inputPaths = (
522-
);
523-
name = "[CP] Embed Pods Frameworks";
524-
outputPaths = (
525-
);
526-
runOnlyForDeploymentPostprocessing = 0;
527-
shellPath = /bin/sh;
528-
shellScript = "\"${SRCROOT}/../Pods/Target Support Files/Pods-OptimizelyTVOSDemoApp/Pods-OptimizelyTVOSDemoApp-frameworks.sh\"\n";
529-
showEnvVarsInLog = 0;
530-
};
531-
EA7000141E552EBD00590BEF /* [CP] Copy Pods Resources */ = {
532-
isa = PBXShellScriptBuildPhase;
533-
buildActionMask = 2147483647;
534-
files = (
535-
);
536-
inputPaths = (
537-
);
538-
name = "[CP] Copy Pods Resources";
539-
outputPaths = (
540-
);
541-
runOnlyForDeploymentPostprocessing = 0;
542-
shellPath = /bin/sh;
543-
shellScript = "\"${SRCROOT}/../Pods/Target Support Files/Pods-OptimizelyTVOSDemoApp/Pods-OptimizelyTVOSDemoApp-resources.sh\"\n";
544-
showEnvVarsInLog = 0;
545-
};
546513
EA70FFE51E552E9E00590BEF /* [CP] Check Pods Manifest.lock */ = {
547514
isa = PBXShellScriptBuildPhase;
548515
buildActionMask = 2147483647;
@@ -570,7 +537,7 @@
570537
"${SRCROOT}/../Pods/Target Support Files/Pods-OptimizelyiOSDemoApp/Pods-OptimizelyiOSDemoApp-frameworks.sh",
571538
"${BUILT_PRODUCTS_DIR}/Amplitude-iOS/Amplitude_iOS.framework",
572539
"${BUILT_PRODUCTS_DIR}/GoogleToolboxForMac/GoogleToolboxForMac.framework",
573-
"${PODS_ROOT}/Localytics/Localytics-iOS-4.4.1/Localytics.framework",
540+
"${PODS_ROOT}/Localytics/Localytics-iOS-5.1.0/Localytics.framework",
574541
"${BUILT_PRODUCTS_DIR}/Mixpanel-swift/Mixpanel.framework",
575542
);
576543
name = "[CP] Embed Pods Frameworks";
@@ -585,21 +552,6 @@
585552
shellScript = "\"${SRCROOT}/../Pods/Target Support Files/Pods-OptimizelyiOSDemoApp/Pods-OptimizelyiOSDemoApp-frameworks.sh\"\n";
586553
showEnvVarsInLog = 0;
587554
};
588-
EA70FFF71E552E9E00590BEF /* [CP] Copy Pods Resources */ = {
589-
isa = PBXShellScriptBuildPhase;
590-
buildActionMask = 2147483647;
591-
files = (
592-
);
593-
inputPaths = (
594-
);
595-
name = "[CP] Copy Pods Resources";
596-
outputPaths = (
597-
);
598-
runOnlyForDeploymentPostprocessing = 0;
599-
shellPath = /bin/sh;
600-
shellScript = "\"${SRCROOT}/../Pods/Target Support Files/Pods-OptimizelyiOSDemoApp/Pods-OptimizelyiOSDemoApp-resources.sh\"\n";
601-
showEnvVarsInLog = 0;
602-
};
603555
/* End PBXShellScriptBuildPhase section */
604556

605557
/* Begin PBXSourcesBuildPhase section */
@@ -810,7 +762,8 @@
810762
SDKROOT = appletvos;
811763
SWIFT_OBJC_BRIDGING_HEADER = "";
812764
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
813-
SWIFT_VERSION = 3.0;
765+
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
766+
SWIFT_VERSION = 4.0;
814767
TARGETED_DEVICE_FAMILY = 3;
815768
TVOS_DEPLOYMENT_TARGET = 9.0;
816769
};
@@ -831,7 +784,8 @@
831784
PRODUCT_NAME = "$(TARGET_NAME)";
832785
SDKROOT = appletvos;
833786
SWIFT_OBJC_BRIDGING_HEADER = "";
834-
SWIFT_VERSION = 3.0;
787+
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
788+
SWIFT_VERSION = 4.0;
835789
TARGETED_DEVICE_FAMILY = 3;
836790
TVOS_DEPLOYMENT_TARGET = 9.0;
837791
};
@@ -853,7 +807,7 @@
853807
"\"${PODS_ROOT}/FirebaseCore/Frameworks\"",
854808
"\"${PODS_ROOT}/FirebaseInstanceID/Frameworks\"",
855809
"\"${PODS_ROOT}/Google/Frameworks\"",
856-
"\"${PODS_ROOT}/Localytics/Localytics-iOS-4.4.1\"",
810+
"\"${PODS_ROOT}/Localytics/Localytics-iOS-5.1.0\"",
857811
);
858812
INFOPLIST_FILE = "$(SRCROOT)/OptimizelyiOSDemoApp/OptimizelyiOSDemoApp-Info.plist";
859813
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
@@ -862,7 +816,8 @@
862816
PRODUCT_NAME = "$(TARGET_NAME)";
863817
SWIFT_OBJC_BRIDGING_HEADER = "OptimizelyDemoApp-Bridging-Header.h";
864818
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
865-
SWIFT_VERSION = 3.0;
819+
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
820+
SWIFT_VERSION = 4.0;
866821
USER_HEADER_SEARCH_PATHS = "";
867822
};
868823
name = Debug;
@@ -881,7 +836,8 @@
881836
PRODUCT_BUNDLE_IDENTIFIER = Optimizely.OptimizelyiOSDemoApp;
882837
PRODUCT_NAME = "$(TARGET_NAME)";
883838
SWIFT_OBJC_BRIDGING_HEADER = "OptimizelyDemoApp-Bridging-Header.h";
884-
SWIFT_VERSION = 3.0;
839+
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
840+
SWIFT_VERSION = 4.0;
885841
USER_HEADER_SEARCH_PATHS = "";
886842
};
887843
name = Release;

OptimizelySDKCore/OptimizelySDKCore.xcodeproj/project.pbxproj

100755100644
Lines changed: 2 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
3E858C951F42280900D53856 /* OPTLYJSONKeyMapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E858C801F4227E300D53856 /* OPTLYJSONKeyMapper.m */; };
104104
3E858C961F42280900D53856 /* OPTLYJSONValueTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E858C811F4227E300D53856 /* OPTLYJSONValueTransformer.h */; settings = {ATTRIBUTES = (Public, ); }; };
105105
3E858C971F42280900D53856 /* OPTLYJSONValueTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E858C821F4227E300D53856 /* OPTLYJSONValueTransformer.m */; };
106-
3E8E517E202C844600B08F83 /* (null) in Sources */ = {isa = PBXBuildFile; };
106+
3E8E517E202C844600B08F83 /* BuildFile in Sources */ = {isa = PBXBuildFile; };
107107
3E92800E1F26AD4700214C58 /* BucketerTestsDatafile2.json in Resources */ = {isa = PBXBuildFile; fileRef = 3E92800D1F26AD4700214C58 /* BucketerTestsDatafile2.json */; };
108108
3E99A9F81F4BAF9A009F8805 /* OptimizelySDKCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA2FA81E1DC5DBB100B1D81B /* OptimizelySDKCore.framework */; };
109109
3E99AA001F4BB1BA009F8805 /* ArrayTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E35DC321F47ACFE00018732 /* ArrayTests.m */; };
@@ -1441,7 +1441,6 @@
14411441
EA2FA8031DC5DBA000B1D81B /* Frameworks */,
14421442
EA2FA8041DC5DBA000B1D81B /* Resources */,
14431443
14BE202F5B035590ACC23D13 /* [CP] Embed Pods Frameworks */,
1444-
8857BE90A44CFBEDA6B9CD96 /* [CP] Copy Pods Resources */,
14451444
);
14461445
buildRules = (
14471446
);
@@ -1480,7 +1479,6 @@
14801479
EA2FA8231DC5DBB100B1D81B /* Frameworks */,
14811480
EA2FA8241DC5DBB100B1D81B /* Resources */,
14821481
AFBD9685AB3F81623C9C815B /* [CP] Embed Pods Frameworks */,
1483-
38A610DE7FA3981A6C09C0B1 /* [CP] Copy Pods Resources */,
14841482
);
14851483
buildRules = (
14861484
);
@@ -1686,21 +1684,6 @@
16861684
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
16871685
showEnvVarsInLog = 0;
16881686
};
1689-
38A610DE7FA3981A6C09C0B1 /* [CP] Copy Pods Resources */ = {
1690-
isa = PBXShellScriptBuildPhase;
1691-
buildActionMask = 2147483647;
1692-
files = (
1693-
);
1694-
inputPaths = (
1695-
);
1696-
name = "[CP] Copy Pods Resources";
1697-
outputPaths = (
1698-
);
1699-
runOnlyForDeploymentPostprocessing = 0;
1700-
shellPath = /bin/sh;
1701-
shellScript = "\"${SRCROOT}/../Pods/Target Support Files/Pods-OptimizelySDKCoreTVOSTests/Pods-OptimizelySDKCoreTVOSTests-resources.sh\"\n";
1702-
showEnvVarsInLog = 0;
1703-
};
17041687
872DDF662E30A809F92BC54A /* [CP] Check Pods Manifest.lock */ = {
17051688
isa = PBXShellScriptBuildPhase;
17061689
buildActionMask = 2147483647;
@@ -1719,21 +1702,6 @@
17191702
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
17201703
showEnvVarsInLog = 0;
17211704
};
1722-
8857BE90A44CFBEDA6B9CD96 /* [CP] Copy Pods Resources */ = {
1723-
isa = PBXShellScriptBuildPhase;
1724-
buildActionMask = 2147483647;
1725-
files = (
1726-
);
1727-
inputPaths = (
1728-
);
1729-
name = "[CP] Copy Pods Resources";
1730-
outputPaths = (
1731-
);
1732-
runOnlyForDeploymentPostprocessing = 0;
1733-
shellPath = /bin/sh;
1734-
shellScript = "\"${SRCROOT}/../Pods/Target Support Files/Pods-OptimizelySDKCoreiOSTests/Pods-OptimizelySDKCoreiOSTests-resources.sh\"\n";
1735-
showEnvVarsInLog = 0;
1736-
};
17371705
AFBD9685AB3F81623C9C815B /* [CP] Embed Pods Frameworks */ = {
17381706
isa = PBXShellScriptBuildPhase;
17391707
buildActionMask = 2147483647;
@@ -2018,7 +1986,7 @@
20181986
files = (
20191987
EA2FABAF1DC6FDFA00B1D81B /* OPTLYConditionTest.m in Sources */,
20201988
EA2FAB9D1DC6FDFA00B1D81B /* OptimizelySDKCoreTests.m in Sources */,
2021-
3E8E517E202C844600B08F83 /* (null) in Sources */,
1989+
3E8E517E202C844600B08F83 /* BuildFile in Sources */,
20221990
EA2FABA31DC6FDFA00B1D81B /* OptimizelyTest.m in Sources */,
20231991
EA2FABC41DC6FDFA00B1D81B /* OPTLYTestHelper.m in Sources */,
20241992
EA2FABBE1DC6FDFA00B1D81B /* OPTLYLoggerTest.m in Sources */,

OptimizelySDKDatafileManager/OptimizelySDKDatafileManager.xcodeproj/project.pbxproj

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,6 @@
385385
EA5248091DC72AB000AF6685 /* Frameworks */,
386386
EA52480A1DC72AB000AF6685 /* Resources */,
387387
05C29488DC7ABB7B1F7F9973 /* [CP] Embed Pods Frameworks */,
388-
5795C40CDAC02E8A8685A192 /* [CP] Copy Pods Resources */,
389388
);
390389
buildRules = (
391390
);
@@ -425,7 +424,6 @@
425424
EA5248291DC72ABD00AF6685 /* Frameworks */,
426425
EA52482A1DC72ABD00AF6685 /* Resources */,
427426
221118C0138EE5D12FB87311 /* [CP] Embed Pods Frameworks */,
428-
BB42F74DD1F94B66458EC143 /* [CP] Copy Pods Resources */,
429427
);
430428
buildRules = (
431429
);
@@ -644,21 +642,6 @@
644642
shellScript = "\"${SRCROOT}/../Pods/Target Support Files/Pods-OptimizelySDKDatafileManagerTVOSTests/Pods-OptimizelySDKDatafileManagerTVOSTests-frameworks.sh\"\n";
645643
showEnvVarsInLog = 0;
646644
};
647-
5795C40CDAC02E8A8685A192 /* [CP] Copy Pods Resources */ = {
648-
isa = PBXShellScriptBuildPhase;
649-
buildActionMask = 2147483647;
650-
files = (
651-
);
652-
inputPaths = (
653-
);
654-
name = "[CP] Copy Pods Resources";
655-
outputPaths = (
656-
);
657-
runOnlyForDeploymentPostprocessing = 0;
658-
shellPath = /bin/sh;
659-
shellScript = "\"${SRCROOT}/../Pods/Target Support Files/Pods-OptimizelySDKDatafileManageriOSTests/Pods-OptimizelySDKDatafileManageriOSTests-resources.sh\"\n";
660-
showEnvVarsInLog = 0;
661-
};
662645
9A4AED36FC835BE1EFAB1955 /* [CP] Check Pods Manifest.lock */ = {
663646
isa = PBXShellScriptBuildPhase;
664647
buildActionMask = 2147483647;
@@ -677,21 +660,6 @@
677660
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
678661
showEnvVarsInLog = 0;
679662
};
680-
BB42F74DD1F94B66458EC143 /* [CP] Copy Pods Resources */ = {
681-
isa = PBXShellScriptBuildPhase;
682-
buildActionMask = 2147483647;
683-
files = (
684-
);
685-
inputPaths = (
686-
);
687-
name = "[CP] Copy Pods Resources";
688-
outputPaths = (
689-
);
690-
runOnlyForDeploymentPostprocessing = 0;
691-
shellPath = /bin/sh;
692-
shellScript = "\"${SRCROOT}/../Pods/Target Support Files/Pods-OptimizelySDKDatafileManagerTVOSTests/Pods-OptimizelySDKDatafileManagerTVOSTests-resources.sh\"\n";
693-
showEnvVarsInLog = 0;
694-
};
695663
D0353058B521288DBC6FA2D8 /* [CP] Check Pods Manifest.lock */ = {
696664
isa = PBXShellScriptBuildPhase;
697665
buildActionMask = 2147483647;

OptimizelySDKEventDispatcher/OptimizelySDKEventDispatcher.xcodeproj/project.pbxproj

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,6 @@
310310
EA5247C41DC7272300AF6685 /* Frameworks */,
311311
EA5247C51DC7272300AF6685 /* Resources */,
312312
3E10139E872AB386AF033A14 /* [CP] Embed Pods Frameworks */,
313-
470143F7BCF0AEC1CA56F66C /* [CP] Copy Pods Resources */,
314313
);
315314
buildRules = (
316315
);
@@ -350,7 +349,6 @@
350349
EA5249AC1DC7DCD900AF6685 /* Frameworks */,
351350
EA5249AD1DC7DCD900AF6685 /* Resources */,
352351
C5C8DEC3005025811DF6BA2B /* [CP] Embed Pods Frameworks */,
353-
0B4D173B58CD4D3CE2B80EA9 /* [CP] Copy Pods Resources */,
354352
);
355353
buildRules = (
356354
);
@@ -487,21 +485,6 @@
487485
/* End PBXResourcesBuildPhase section */
488486

489487
/* Begin PBXShellScriptBuildPhase section */
490-
0B4D173B58CD4D3CE2B80EA9 /* [CP] Copy Pods Resources */ = {
491-
isa = PBXShellScriptBuildPhase;
492-
buildActionMask = 2147483647;
493-
files = (
494-
);
495-
inputPaths = (
496-
);
497-
name = "[CP] Copy Pods Resources";
498-
outputPaths = (
499-
);
500-
runOnlyForDeploymentPostprocessing = 0;
501-
shellPath = /bin/sh;
502-
shellScript = "\"${SRCROOT}/../Pods/Target Support Files/Pods-OptimizelySDKEventDispatcherTVOSTests/Pods-OptimizelySDKEventDispatcherTVOSTests-resources.sh\"\n";
503-
showEnvVarsInLog = 0;
504-
};
505488
1CBFD53C3CCBBFAD437178F1 /* [CP] Check Pods Manifest.lock */ = {
506489
isa = PBXShellScriptBuildPhase;
507490
buildActionMask = 2147483647;
@@ -558,21 +541,6 @@
558541
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
559542
showEnvVarsInLog = 0;
560543
};
561-
470143F7BCF0AEC1CA56F66C /* [CP] Copy Pods Resources */ = {
562-
isa = PBXShellScriptBuildPhase;
563-
buildActionMask = 2147483647;
564-
files = (
565-
);
566-
inputPaths = (
567-
);
568-
name = "[CP] Copy Pods Resources";
569-
outputPaths = (
570-
);
571-
runOnlyForDeploymentPostprocessing = 0;
572-
shellPath = /bin/sh;
573-
shellScript = "\"${SRCROOT}/../Pods/Target Support Files/Pods-OptimizelySDKEventDispatcheriOSTests/Pods-OptimizelySDKEventDispatcheriOSTests-resources.sh\"\n";
574-
showEnvVarsInLog = 0;
575-
};
576544
C5C8DEC3005025811DF6BA2B /* [CP] Embed Pods Frameworks */ = {
577545
isa = PBXShellScriptBuildPhase;
578546
buildActionMask = 2147483647;

0 commit comments

Comments
 (0)