Skip to content

Commit 0d2803a

Browse files
committed
Fix pods issues to get uitests target to run
1 parent cf02667 commit 0d2803a

27 files changed

+760
-448
lines changed

Example/Example.xcodeproj/project.pbxproj

+44-40
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10+
060822F73746CB1E440B858F /* Pods_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F3C69A65C20901320EF7022 /* Pods_Example.framework */; };
1011
84B65C6B1CF39DA50089B477 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84B65C6A1CF39DA50089B477 /* AppDelegate.swift */; };
1112
84B65C6D1CF39DA50089B477 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84B65C6C1CF39DA50089B477 /* ViewController.swift */; };
1213
84B65C701CF39DA50089B477 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 84B65C6E1CF39DA50089B477 /* Main.storyboard */; };
1314
84B65C721CF39DA50089B477 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 84B65C711CF39DA50089B477 /* Assets.xcassets */; };
1415
84B65C751CF39DA50089B477 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 84B65C731CF39DA50089B477 /* LaunchScreen.storyboard */; };
15-
95ECD3F6857E94FFDFAD4B66 /* Pods_MQTTSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D14CF6C457355F7BDBFBA98B /* Pods_MQTTSwift.framework */; };
16+
8ECA084750EA217AC3EE72FC /* libPods-UITests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 545549726CD4D2C2A19DDFF6 /* libPods-UITests.a */; };
1617
C7373045229D5DD300E974EA /* UITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7373044229D5DD300E974EA /* UITests.swift */; };
1718
/* End PBXBuildFile section */
1819

@@ -27,34 +28,40 @@
2728
/* End PBXContainerItemProxy section */
2829

2930
/* Begin PBXFileReference section */
31+
06A959B2B61E14661C5BB8B9 /* Pods-UITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-UITests.release.xcconfig"; path = "Pods/Target Support Files/Pods-UITests/Pods-UITests.release.xcconfig"; sourceTree = "<group>"; };
3032
0887A182A21ED76531A9BFCE /* Pods-MQTTSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MQTTSwift.release.xcconfig"; path = "Pods/Target Support Files/Pods-MQTTSwift/Pods-MQTTSwift.release.xcconfig"; sourceTree = "<group>"; };
33+
0F3C69A65C20901320EF7022 /* Pods_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
34+
453AC593E6FED68E1746588C /* Pods-Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig"; sourceTree = "<group>"; };
35+
545549726CD4D2C2A19DDFF6 /* libPods-UITests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-UITests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
3136
84B65C671CF39DA50089B477 /* Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
3237
84B65C6A1CF39DA50089B477 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
3338
84B65C6C1CF39DA50089B477 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
3439
84B65C6F1CF39DA50089B477 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
3540
84B65C711CF39DA50089B477 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
3641
84B65C741CF39DA50089B477 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
3742
84B65C761CF39DA50089B477 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
43+
B8BF9AF72C228AE763E90C5D /* Pods-Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig"; sourceTree = "<group>"; };
3844
C7373042229D5DD300E974EA /* UITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = UITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
3945
C7373044229D5DD300E974EA /* UITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UITests.swift; sourceTree = "<group>"; };
4046
C7373046229D5DD300E974EA /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
4147
CB7967891DB93DF9E94CD2F8 /* Pods-MQTTSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MQTTSwift.debug.xcconfig"; path = "Pods/Target Support Files/Pods-MQTTSwift/Pods-MQTTSwift.debug.xcconfig"; sourceTree = "<group>"; };
42-
D14CF6C457355F7BDBFBA98B /* Pods_MQTTSwift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_MQTTSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; };
48+
E8F65206BDB388B3F0B3A241 /* Pods-UITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-UITests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-UITests/Pods-UITests.debug.xcconfig"; sourceTree = "<group>"; };
4349
/* End PBXFileReference section */
4450

4551
/* Begin PBXFrameworksBuildPhase section */
4652
84B65C641CF39DA50089B477 /* Frameworks */ = {
4753
isa = PBXFrameworksBuildPhase;
4854
buildActionMask = 2147483647;
4955
files = (
50-
95ECD3F6857E94FFDFAD4B66 /* Pods_MQTTSwift.framework in Frameworks */,
56+
060822F73746CB1E440B858F /* Pods_Example.framework in Frameworks */,
5157
);
5258
runOnlyForDeploymentPostprocessing = 0;
5359
};
5460
C737303F229D5DD300E974EA /* Frameworks */ = {
5561
isa = PBXFrameworksBuildPhase;
5662
buildActionMask = 2147483647;
5763
files = (
64+
8ECA084750EA217AC3EE72FC /* libPods-UITests.a in Frameworks */,
5865
);
5966
runOnlyForDeploymentPostprocessing = 0;
6067
};
@@ -64,7 +71,8 @@
6471
4A3C326FCB8B312427A2376C /* Frameworks */ = {
6572
isa = PBXGroup;
6673
children = (
67-
D14CF6C457355F7BDBFBA98B /* Pods_MQTTSwift.framework */,
74+
0F3C69A65C20901320EF7022 /* Pods_Example.framework */,
75+
545549726CD4D2C2A19DDFF6 /* libPods-UITests.a */,
6876
);
6977
name = Frameworks;
7078
sourceTree = "<group>";
@@ -116,6 +124,10 @@
116124
children = (
117125
CB7967891DB93DF9E94CD2F8 /* Pods-MQTTSwift.debug.xcconfig */,
118126
0887A182A21ED76531A9BFCE /* Pods-MQTTSwift.release.xcconfig */,
127+
B8BF9AF72C228AE763E90C5D /* Pods-Example.debug.xcconfig */,
128+
453AC593E6FED68E1746588C /* Pods-Example.release.xcconfig */,
129+
E8F65206BDB388B3F0B3A241 /* Pods-UITests.debug.xcconfig */,
130+
06A959B2B61E14661C5BB8B9 /* Pods-UITests.release.xcconfig */,
119131
);
120132
name = Pods;
121133
sourceTree = "<group>";
@@ -128,11 +140,9 @@
128140
buildConfigurationList = 84B65C791CF39DA50089B477 /* Build configuration list for PBXNativeTarget "Example" */;
129141
buildPhases = (
130142
A1EFE0BBEADAC354651BBCBF /* [CP] Check Pods Manifest.lock */,
131-
20400CA1FA398E0F3FA8BBCC /* 📦 Check Pods Manifest.lock */,
132143
84B65C631CF39DA50089B477 /* Sources */,
133144
84B65C641CF39DA50089B477 /* Frameworks */,
134145
84B65C651CF39DA50089B477 /* Resources */,
135-
40B1B7E41B9CF4E0394EECFB /* 📦 Embed Pods Frameworks */,
136146
CF00B0ECCF5052ABA8A3411A /* [CP] Embed Pods Frameworks */,
137147
);
138148
buildRules = (
@@ -148,6 +158,7 @@
148158
isa = PBXNativeTarget;
149159
buildConfigurationList = C737304B229D5DD300E974EA /* Build configuration list for PBXNativeTarget "UITests" */;
150160
buildPhases = (
161+
EEC4C2BCBD7F7689CE1B5329 /* [CP] Check Pods Manifest.lock */,
151162
C737303E229D5DD300E974EA /* Sources */,
152163
C737303F229D5DD300E974EA /* Frameworks */,
153164
C7373040229D5DD300E974EA /* Resources */,
@@ -174,6 +185,7 @@
174185
TargetAttributes = {
175186
84B65C661CF39DA50089B477 = {
176187
CreatedOnToolsVersion = 7.3.1;
188+
DevelopmentTeam = H38R9864G8;
177189
LastSwiftMigration = 0800;
178190
};
179191
C7373041229D5DD300E974EA = {
@@ -224,37 +236,47 @@
224236
/* End PBXResourcesBuildPhase section */
225237

226238
/* Begin PBXShellScriptBuildPhase section */
227-
20400CA1FA398E0F3FA8BBCC /* 📦 Check Pods Manifest.lock */ = {
239+
A1EFE0BBEADAC354651BBCBF /* [CP] Check Pods Manifest.lock */ = {
228240
isa = PBXShellScriptBuildPhase;
229241
buildActionMask = 2147483647;
230242
files = (
231243
);
244+
inputFileListPaths = (
245+
);
232246
inputPaths = (
247+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
248+
"${PODS_ROOT}/Manifest.lock",
249+
);
250+
name = "[CP] Check Pods Manifest.lock";
251+
outputFileListPaths = (
233252
);
234-
name = "📦 Check Pods Manifest.lock";
235253
outputPaths = (
254+
"$(DERIVED_FILE_DIR)/Pods-Example-checkManifestLockResult.txt",
236255
);
237256
runOnlyForDeploymentPostprocessing = 0;
238257
shellPath = /bin/sh;
239-
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
258+
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";
240259
showEnvVarsInLog = 0;
241260
};
242-
40B1B7E41B9CF4E0394EECFB /* 📦 Embed Pods Frameworks */ = {
261+
CF00B0ECCF5052ABA8A3411A /* [CP] Embed Pods Frameworks */ = {
243262
isa = PBXShellScriptBuildPhase;
244263
buildActionMask = 2147483647;
245264
files = (
246265
);
247266
inputPaths = (
267+
"${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-frameworks.sh",
268+
"${BUILT_PRODUCTS_DIR}/MQTTClient/MQTTClient.framework",
248269
);
249-
name = "📦 Embed Pods Frameworks";
270+
name = "[CP] Embed Pods Frameworks";
250271
outputPaths = (
272+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MQTTClient.framework",
251273
);
252274
runOnlyForDeploymentPostprocessing = 0;
253275
shellPath = /bin/sh;
254-
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MQTTSwift/Pods-MQTTSwift-frameworks.sh\"\n";
276+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-frameworks.sh\"\n";
255277
showEnvVarsInLog = 0;
256278
};
257-
A1EFE0BBEADAC354651BBCBF /* [CP] Check Pods Manifest.lock */ = {
279+
EEC4C2BCBD7F7689CE1B5329 /* [CP] Check Pods Manifest.lock */ = {
258280
isa = PBXShellScriptBuildPhase;
259281
buildActionMask = 2147483647;
260282
files = (
@@ -269,35 +291,13 @@
269291
outputFileListPaths = (
270292
);
271293
outputPaths = (
272-
"$(DERIVED_FILE_DIR)/Pods-MQTTSwift-checkManifestLockResult.txt",
294+
"$(DERIVED_FILE_DIR)/Pods-UITests-checkManifestLockResult.txt",
273295
);
274296
runOnlyForDeploymentPostprocessing = 0;
275297
shellPath = /bin/sh;
276298
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";
277299
showEnvVarsInLog = 0;
278300
};
279-
CF00B0ECCF5052ABA8A3411A /* [CP] Embed Pods Frameworks */ = {
280-
isa = PBXShellScriptBuildPhase;
281-
buildActionMask = 2147483647;
282-
files = (
283-
);
284-
inputFileListPaths = (
285-
);
286-
inputPaths = (
287-
"${PODS_ROOT}/Target Support Files/Pods-MQTTSwift/Pods-MQTTSwift-frameworks.sh",
288-
"${BUILT_PRODUCTS_DIR}/MQTTClient/MQTTClient.framework",
289-
);
290-
name = "[CP] Embed Pods Frameworks";
291-
outputFileListPaths = (
292-
);
293-
outputPaths = (
294-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MQTTClient.framework",
295-
);
296-
runOnlyForDeploymentPostprocessing = 0;
297-
shellPath = /bin/sh;
298-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-MQTTSwift/Pods-MQTTSwift-frameworks.sh\"\n";
299-
showEnvVarsInLog = 0;
300-
};
301301
/* End PBXShellScriptBuildPhase section */
302302

303303
/* Begin PBXSourcesBuildPhase section */
@@ -460,30 +460,33 @@
460460
};
461461
84B65C7A1CF39DA50089B477 /* Debug */ = {
462462
isa = XCBuildConfiguration;
463-
baseConfigurationReference = CB7967891DB93DF9E94CD2F8 /* Pods-MQTTSwift.debug.xcconfig */;
463+
baseConfigurationReference = B8BF9AF72C228AE763E90C5D /* Pods-Example.debug.xcconfig */;
464464
buildSettings = {
465465
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
466+
DEVELOPMENT_TEAM = H38R9864G8;
466467
INFOPLIST_FILE = Example/Info.plist;
467468
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
468-
PRODUCT_BUNDLE_IDENTIFIER = org.owntracks.MQTTSwift;
469+
PRODUCT_BUNDLE_IDENTIFIER = com.novastonemedia.example.MQTTClient;
469470
PRODUCT_NAME = "$(TARGET_NAME)";
470471
};
471472
name = Debug;
472473
};
473474
84B65C7B1CF39DA50089B477 /* Release */ = {
474475
isa = XCBuildConfiguration;
475-
baseConfigurationReference = 0887A182A21ED76531A9BFCE /* Pods-MQTTSwift.release.xcconfig */;
476+
baseConfigurationReference = 453AC593E6FED68E1746588C /* Pods-Example.release.xcconfig */;
476477
buildSettings = {
477478
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
479+
DEVELOPMENT_TEAM = H38R9864G8;
478480
INFOPLIST_FILE = Example/Info.plist;
479481
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
480-
PRODUCT_BUNDLE_IDENTIFIER = org.owntracks.MQTTSwift;
482+
PRODUCT_BUNDLE_IDENTIFIER = com.novastonemedia.example.MQTTClient;
481483
PRODUCT_NAME = "$(TARGET_NAME)";
482484
};
483485
name = Release;
484486
};
485487
C7373049229D5DD300E974EA /* Debug */ = {
486488
isa = XCBuildConfiguration;
489+
baseConfigurationReference = E8F65206BDB388B3F0B3A241 /* Pods-UITests.debug.xcconfig */;
487490
buildSettings = {
488491
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
489492
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
@@ -509,6 +512,7 @@
509512
};
510513
C737304A229D5DD300E974EA /* Release */ = {
511514
isa = XCBuildConfiguration;
515+
baseConfigurationReference = 06A959B2B61E14661C5BB8B9 /* Pods-UITests.release.xcconfig */;
512516
buildSettings = {
513517
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
514518
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "1100"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "84B65C661CF39DA50089B477"
18+
BuildableName = "Example.app"
19+
BlueprintName = "Example"
20+
ReferencedContainer = "container:Example.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<Testables>
31+
<TestableReference
32+
skipped = "NO">
33+
<BuildableReference
34+
BuildableIdentifier = "primary"
35+
BlueprintIdentifier = "C7373041229D5DD300E974EA"
36+
BuildableName = "UITests.xctest"
37+
BlueprintName = "UITests"
38+
ReferencedContainer = "container:Example.xcodeproj">
39+
</BuildableReference>
40+
</TestableReference>
41+
</Testables>
42+
</TestAction>
43+
<LaunchAction
44+
buildConfiguration = "Debug"
45+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
46+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
47+
launchStyle = "0"
48+
useCustomWorkingDirectory = "NO"
49+
ignoresPersistentStateOnLaunch = "NO"
50+
debugDocumentVersioning = "YES"
51+
debugServiceExtension = "internal"
52+
allowLocationSimulation = "YES">
53+
<BuildableProductRunnable
54+
runnableDebuggingMode = "0">
55+
<BuildableReference
56+
BuildableIdentifier = "primary"
57+
BlueprintIdentifier = "84B65C661CF39DA50089B477"
58+
BuildableName = "Example.app"
59+
BlueprintName = "Example"
60+
ReferencedContainer = "container:Example.xcodeproj">
61+
</BuildableReference>
62+
</BuildableProductRunnable>
63+
</LaunchAction>
64+
<ProfileAction
65+
buildConfiguration = "Release"
66+
shouldUseLaunchSchemeArgsEnv = "YES"
67+
savedToolIdentifier = ""
68+
useCustomWorkingDirectory = "NO"
69+
debugDocumentVersioning = "YES">
70+
<BuildableProductRunnable
71+
runnableDebuggingMode = "0">
72+
<BuildableReference
73+
BuildableIdentifier = "primary"
74+
BlueprintIdentifier = "84B65C661CF39DA50089B477"
75+
BuildableName = "Example.app"
76+
BlueprintName = "Example"
77+
ReferencedContainer = "container:Example.xcodeproj">
78+
</BuildableReference>
79+
</BuildableProductRunnable>
80+
</ProfileAction>
81+
<AnalyzeAction
82+
buildConfiguration = "Debug">
83+
</AnalyzeAction>
84+
<ArchiveAction
85+
buildConfiguration = "Release"
86+
revealArchiveInOrganizer = "YES">
87+
</ArchiveAction>
88+
</Scheme>

Example/Example.xcodeproj/xcshareddata/xcschemes/MQTTSwift.xcscheme

+2-6
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@
2727
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2828
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
2929
shouldUseLaunchSchemeArgsEnv = "YES">
30-
<Testables>
31-
</Testables>
3230
<MacroExpansion>
3331
<BuildableReference
3432
BuildableIdentifier = "primary"
@@ -38,8 +36,8 @@
3836
ReferencedContainer = "container:MQTTSwift.xcodeproj">
3937
</BuildableReference>
4038
</MacroExpansion>
41-
<AdditionalOptions>
42-
</AdditionalOptions>
39+
<Testables>
40+
</Testables>
4341
</TestAction>
4442
<LaunchAction
4543
buildConfiguration = "Debug"
@@ -61,8 +59,6 @@
6159
ReferencedContainer = "container:MQTTSwift.xcodeproj">
6260
</BuildableReference>
6361
</BuildableProductRunnable>
64-
<AdditionalOptions>
65-
</AdditionalOptions>
6662
</LaunchAction>
6763
<ProfileAction
6864
buildConfiguration = "Release"

Example/Example.xcworkspace/contents.xcworkspacedata

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

Example/Podfile

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
source 'https://github.com/CocoaPods/Specs.git'
2-
platform :ios, '8.0'
2+
platform :ios, '10.0'
33

4-
use_frameworks!
5-
6-
pod 'MQTTClient'
4+
target 'Example' do
5+
use_frameworks!
6+
pod 'MQTTClient'
7+
end
78

8-
target 'MQTTSwift' do
9+
target 'UITests' do
910
end
1011

Example/Podfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ SPEC REPOS:
1818
SPEC CHECKSUMS:
1919
MQTTClient: 902c7bcac1501595f3d0b15178c7205b40331fb0
2020

21-
PODFILE CHECKSUM: af571314a52a531a6272d07c02236032bb373dea
21+
PODFILE CHECKSUM: 11676137ea7563e7b497798aad286baac8147c53
2222

23-
COCOAPODS: 1.6.0.beta.2
23+
COCOAPODS: 1.7.5

0 commit comments

Comments
 (0)