Skip to content

Commit f0750f0

Browse files
committed
Remove CocoaPods integration from iOS and macOS examples
Eliminates Podfile, Podfile.lock, and all CocoaPods-related configuration and build steps from the display_example for both iOS and macOS. Migrates dependency management to use Swift Package Manager and updates Xcode project files and schemes accordingly.
1 parent 1ddb804 commit f0750f0

14 files changed

Lines changed: 85 additions & 348 deletions

File tree

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
21
#include "Generated.xcconfig"
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
21
#include "Generated.xcconfig"

examples/display_example/ios/Podfile

Lines changed: 0 additions & 43 deletions
This file was deleted.

examples/display_example/ios/Podfile.lock

Lines changed: 0 additions & 22 deletions
This file was deleted.

examples/display_example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 24 additions & 112 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@
88

99
/* Begin PBXBuildFile section */
1010
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
11-
20BC35DF05B4682764E40CF0 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D07E520E6502ACD5FF6D645D /* Pods_RunnerTests.framework */; };
12-
26D77912D141B3273C8FF792 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DB49652267607009B7500832 /* Pods_Runner.framework */; };
1311
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
1412
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
1513
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
14+
78A318202AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage in Frameworks */ = {isa = PBXBuildFile; productRef = 78A3181F2AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage */; };
1615
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
1716
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
1817
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
@@ -42,16 +41,14 @@
4241
/* End PBXCopyFilesBuildPhase section */
4342

4443
/* Begin PBXFileReference section */
45-
108A553610AB68F456805012 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = "<group>"; };
4644
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
4745
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
4846
331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
4947
331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
5048
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
51-
3EA5634A540C83695A804B42 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
52-
6C58669F917582160909874F /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = "<group>"; };
5349
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
5450
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
51+
78E0A7A72DC9AD7400C4905E /* FlutterGeneratedPluginSwiftPackage */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = FlutterGeneratedPluginSwiftPackage; path = Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage; sourceTree = "<group>"; };
5552
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
5653
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
5754
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
@@ -60,47 +57,20 @@
6057
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
6158
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
6259
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
63-
D07E520E6502ACD5FF6D645D /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
64-
D77FE3A296665FB45F32F77F /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
65-
DB49652267607009B7500832 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
66-
E18C017A597D65F4F7F78B23 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = "<group>"; };
67-
F281B5E48334B6F508F34193 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
6860
/* End PBXFileReference section */
6961

7062
/* Begin PBXFrameworksBuildPhase section */
71-
444C8DB8E1161E71309CF09C /* Frameworks */ = {
72-
isa = PBXFrameworksBuildPhase;
73-
buildActionMask = 2147483647;
74-
files = (
75-
20BC35DF05B4682764E40CF0 /* Pods_RunnerTests.framework in Frameworks */,
76-
);
77-
runOnlyForDeploymentPostprocessing = 0;
78-
};
7963
97C146EB1CF9000F007C117D /* Frameworks */ = {
8064
isa = PBXFrameworksBuildPhase;
8165
buildActionMask = 2147483647;
8266
files = (
83-
26D77912D141B3273C8FF792 /* Pods_Runner.framework in Frameworks */,
67+
78A318202AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage in Frameworks */,
8468
);
8569
runOnlyForDeploymentPostprocessing = 0;
8670
};
8771
/* End PBXFrameworksBuildPhase section */
8872

8973
/* Begin PBXGroup section */
90-
10E6C7224628CC6EEF1BA657 /* Pods */ = {
91-
isa = PBXGroup;
92-
children = (
93-
D77FE3A296665FB45F32F77F /* Pods-Runner.debug.xcconfig */,
94-
3EA5634A540C83695A804B42 /* Pods-Runner.release.xcconfig */,
95-
F281B5E48334B6F508F34193 /* Pods-Runner.profile.xcconfig */,
96-
E18C017A597D65F4F7F78B23 /* Pods-RunnerTests.debug.xcconfig */,
97-
6C58669F917582160909874F /* Pods-RunnerTests.release.xcconfig */,
98-
108A553610AB68F456805012 /* Pods-RunnerTests.profile.xcconfig */,
99-
);
100-
name = Pods;
101-
path = Pods;
102-
sourceTree = "<group>";
103-
};
10474
331C8082294A63A400263BE5 /* RunnerTests */ = {
10575
isa = PBXGroup;
10676
children = (
@@ -112,6 +82,7 @@
11282
9740EEB11CF90186004384FC /* Flutter */ = {
11383
isa = PBXGroup;
11484
children = (
85+
78E0A7A72DC9AD7400C4905E /* FlutterGeneratedPluginSwiftPackage */,
11586
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
11687
9740EEB21CF90195004384FC /* Debug.xcconfig */,
11788
7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
@@ -127,8 +98,6 @@
12798
97C146F01CF9000F007C117D /* Runner */,
12899
97C146EF1CF9000F007C117D /* Products */,
129100
331C8082294A63A400263BE5 /* RunnerTests */,
130-
10E6C7224628CC6EEF1BA657 /* Pods */,
131-
FE6034BE188E2BBCC217770D /* Frameworks */,
132101
);
133102
sourceTree = "<group>";
134103
};
@@ -156,26 +125,15 @@
156125
path = Runner;
157126
sourceTree = "<group>";
158127
};
159-
FE6034BE188E2BBCC217770D /* Frameworks */ = {
160-
isa = PBXGroup;
161-
children = (
162-
DB49652267607009B7500832 /* Pods_Runner.framework */,
163-
D07E520E6502ACD5FF6D645D /* Pods_RunnerTests.framework */,
164-
);
165-
name = Frameworks;
166-
sourceTree = "<group>";
167-
};
168128
/* End PBXGroup section */
169129

170130
/* Begin PBXNativeTarget section */
171131
331C8080294A63A400263BE5 /* RunnerTests */ = {
172132
isa = PBXNativeTarget;
173133
buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
174134
buildPhases = (
175-
6EB285CA92DD8850DC515CB5 /* [CP] Check Pods Manifest.lock */,
176135
331C807D294A63A400263BE5 /* Sources */,
177136
331C807F294A63A400263BE5 /* Resources */,
178-
444C8DB8E1161E71309CF09C /* Frameworks */,
179137
);
180138
buildRules = (
181139
);
@@ -191,20 +149,21 @@
191149
isa = PBXNativeTarget;
192150
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
193151
buildPhases = (
194-
752955EC30036F2639CA632A /* [CP] Check Pods Manifest.lock */,
195152
9740EEB61CF901F6004384FC /* Run Script */,
196153
97C146EA1CF9000F007C117D /* Sources */,
197154
97C146EB1CF9000F007C117D /* Frameworks */,
198155
97C146EC1CF9000F007C117D /* Resources */,
199156
9705A1C41CF9048500538489 /* Embed Frameworks */,
200157
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
201-
F5B78F03027EF9CB663A1530 /* [CP] Embed Pods Frameworks */,
202158
);
203159
buildRules = (
204160
);
205161
dependencies = (
206162
);
207163
name = Runner;
164+
packageProductDependencies = (
165+
78A3181F2AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage */,
166+
);
208167
productName = Runner;
209168
productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
210169
productType = "com.apple.product-type.application";
@@ -238,6 +197,9 @@
238197
Base,
239198
);
240199
mainGroup = 97C146E51CF9000F007C117D;
200+
packageReferences = (
201+
781AD8BC2B33823900A9FFBB /* XCLocalSwiftPackageReference "Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage" */,
202+
);
241203
productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
242204
projectDirPath = "";
243205
projectRoot = "";
@@ -286,50 +248,6 @@
286248
shellPath = /bin/sh;
287249
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
288250
};
289-
6EB285CA92DD8850DC515CB5 /* [CP] Check Pods Manifest.lock */ = {
290-
isa = PBXShellScriptBuildPhase;
291-
buildActionMask = 2147483647;
292-
files = (
293-
);
294-
inputFileListPaths = (
295-
);
296-
inputPaths = (
297-
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
298-
"${PODS_ROOT}/Manifest.lock",
299-
);
300-
name = "[CP] Check Pods Manifest.lock";
301-
outputFileListPaths = (
302-
);
303-
outputPaths = (
304-
"$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
305-
);
306-
runOnlyForDeploymentPostprocessing = 0;
307-
shellPath = /bin/sh;
308-
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";
309-
showEnvVarsInLog = 0;
310-
};
311-
752955EC30036F2639CA632A /* [CP] Check Pods Manifest.lock */ = {
312-
isa = PBXShellScriptBuildPhase;
313-
buildActionMask = 2147483647;
314-
files = (
315-
);
316-
inputFileListPaths = (
317-
);
318-
inputPaths = (
319-
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
320-
"${PODS_ROOT}/Manifest.lock",
321-
);
322-
name = "[CP] Check Pods Manifest.lock";
323-
outputFileListPaths = (
324-
);
325-
outputPaths = (
326-
"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
327-
);
328-
runOnlyForDeploymentPostprocessing = 0;
329-
shellPath = /bin/sh;
330-
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";
331-
showEnvVarsInLog = 0;
332-
};
333251
9740EEB61CF901F6004384FC /* Run Script */ = {
334252
isa = PBXShellScriptBuildPhase;
335253
alwaysOutOfDate = 1;
@@ -345,23 +263,6 @@
345263
shellPath = /bin/sh;
346264
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
347265
};
348-
F5B78F03027EF9CB663A1530 /* [CP] Embed Pods Frameworks */ = {
349-
isa = PBXShellScriptBuildPhase;
350-
buildActionMask = 2147483647;
351-
files = (
352-
);
353-
inputFileListPaths = (
354-
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
355-
);
356-
name = "[CP] Embed Pods Frameworks";
357-
outputFileListPaths = (
358-
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
359-
);
360-
runOnlyForDeploymentPostprocessing = 0;
361-
shellPath = /bin/sh;
362-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
363-
showEnvVarsInLog = 0;
364-
};
365266
/* End PBXShellScriptBuildPhase section */
366267

367268
/* Begin PBXSourcesBuildPhase section */
@@ -487,7 +388,6 @@
487388
};
488389
331C8088294A63A400263BE5 /* Debug */ = {
489390
isa = XCBuildConfiguration;
490-
baseConfigurationReference = E18C017A597D65F4F7F78B23 /* Pods-RunnerTests.debug.xcconfig */;
491391
buildSettings = {
492392
BUNDLE_LOADER = "$(TEST_HOST)";
493393
CODE_SIGN_STYLE = Automatic;
@@ -505,7 +405,6 @@
505405
};
506406
331C8089294A63A400263BE5 /* Release */ = {
507407
isa = XCBuildConfiguration;
508-
baseConfigurationReference = 6C58669F917582160909874F /* Pods-RunnerTests.release.xcconfig */;
509408
buildSettings = {
510409
BUNDLE_LOADER = "$(TEST_HOST)";
511410
CODE_SIGN_STYLE = Automatic;
@@ -521,7 +420,6 @@
521420
};
522421
331C808A294A63A400263BE5 /* Profile */ = {
523422
isa = XCBuildConfiguration;
524-
baseConfigurationReference = 108A553610AB68F456805012 /* Pods-RunnerTests.profile.xcconfig */;
525423
buildSettings = {
526424
BUNDLE_LOADER = "$(TEST_HOST)";
527425
CODE_SIGN_STYLE = Automatic;
@@ -723,6 +621,20 @@
723621
defaultConfigurationName = Release;
724622
};
725623
/* End XCConfigurationList section */
624+
625+
/* Begin XCLocalSwiftPackageReference section */
626+
781AD8BC2B33823900A9FFBB /* XCLocalSwiftPackageReference "Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage" */ = {
627+
isa = XCLocalSwiftPackageReference;
628+
relativePath = Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage;
629+
};
630+
/* End XCLocalSwiftPackageReference section */
631+
632+
/* Begin XCSwiftPackageProductDependency section */
633+
78A3181F2AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage */ = {
634+
isa = XCSwiftPackageProductDependency;
635+
productName = FlutterGeneratedPluginSwiftPackage;
636+
};
637+
/* End XCSwiftPackageProductDependency section */
726638
};
727639
rootObject = 97C146E61CF9000F007C117D /* Project object */;
728640
}

examples/display_example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@
55
<BuildAction
66
parallelizeBuildables = "YES"
77
buildImplicitDependencies = "YES">
8+
<PreActions>
9+
<ExecutionAction
10+
ActionType = "Xcode.IDEStandardExecutionActionsCore.ExecutionActionType.ShellScriptAction">
11+
<ActionContent
12+
title = "Run Prepare Flutter Framework Script"
13+
scriptText = "/bin/sh &quot;$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh&quot; prepare&#10;">
14+
<EnvironmentBuildable>
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
18+
BuildableName = "Runner.app"
19+
BlueprintName = "Runner"
20+
ReferencedContainer = "container:Runner.xcodeproj">
21+
</BuildableReference>
22+
</EnvironmentBuildable>
23+
</ActionContent>
24+
</ExecutionAction>
25+
</PreActions>
826
<BuildActionEntries>
927
<BuildActionEntry
1028
buildForTesting = "YES"

examples/display_example/ios/Runner.xcworkspace/contents.xcworkspacedata

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
21
#include "ephemeral/Flutter-Generated.xcconfig"
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
21
#include "ephemeral/Flutter-Generated.xcconfig"

0 commit comments

Comments
 (0)