Skip to content

Commit 46b34e2

Browse files
committed
Basic implementation of swift plugin
1 parent 31d4996 commit 46b34e2

File tree

5 files changed

+224
-12
lines changed

5 files changed

+224
-12
lines changed

example/ios/Podfile.lock

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
PODS:
2+
- Flutter (1.0.0)
3+
- integration_test (0.0.1):
4+
- Flutter
5+
- sound_effect (0.0.1):
6+
- Flutter
7+
8+
DEPENDENCIES:
9+
- Flutter (from `Flutter`)
10+
- integration_test (from `.symlinks/plugins/integration_test/ios`)
11+
- sound_effect (from `.symlinks/plugins/sound_effect/ios`)
12+
13+
EXTERNAL SOURCES:
14+
Flutter:
15+
:path: Flutter
16+
integration_test:
17+
:path: ".symlinks/plugins/integration_test/ios"
18+
sound_effect:
19+
:path: ".symlinks/plugins/sound_effect/ios"
20+
21+
SPEC CHECKSUMS:
22+
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
23+
integration_test: 252f60fa39af5e17c3aa9899d35d908a0721b573
24+
sound_effect: 1ffc7b1134620bec38d2d044462a8202df62e2d6
25+
26+
PODFILE CHECKSUM: 819463e6a0290f5a72f145ba7cde16e8b6ef0796
27+
28+
COCOAPODS: 1.15.2

example/ios/Runner.xcodeproj/project.pbxproj

+112
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
1212
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
1313
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
14+
7928C61F81E3453C13799579 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7CACF6D24B1D5D95242CA3A1 /* Pods_RunnerTests.framework */; };
15+
9249C22D676A1A9710F4FED4 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 79299F14C9FC67302368C35D /* Pods_Runner.framework */; };
1416
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
1517
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
1618
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
@@ -40,28 +42,45 @@
4042
/* End PBXCopyFilesBuildPhase section */
4143

4244
/* Begin PBXFileReference section */
45+
1164DC81831EF5FF114DE0AD /* 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>"; };
4346
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
4447
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
4548
331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
4649
331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
50+
38938D1EB0DC85B162648E6E /* 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>"; };
4751
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
52+
5C0A6C9DC70293F4749032BF /* 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>"; };
53+
61D3F3E782BC9987F8A0BE4B /* 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>"; };
4854
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
4955
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
56+
79299F14C9FC67302368C35D /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5057
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
58+
7CACF6D24B1D5D95242CA3A1 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
59+
8E4EB9233CFC33D8B7C11848 /* 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>"; };
5160
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
5261
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
5362
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
5463
97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
5564
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
5665
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
5766
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
67+
C23B4AF676D39C6EAA1262E7 /* 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>"; };
5868
/* End PBXFileReference section */
5969

6070
/* Begin PBXFrameworksBuildPhase section */
6171
97C146EB1CF9000F007C117D /* Frameworks */ = {
6272
isa = PBXFrameworksBuildPhase;
6373
buildActionMask = 2147483647;
6474
files = (
75+
9249C22D676A1A9710F4FED4 /* Pods_Runner.framework in Frameworks */,
76+
);
77+
runOnlyForDeploymentPostprocessing = 0;
78+
};
79+
B12CA869919DAAEEE1CAE96B /* Frameworks */ = {
80+
isa = PBXFrameworksBuildPhase;
81+
buildActionMask = 2147483647;
82+
files = (
83+
7928C61F81E3453C13799579 /* Pods_RunnerTests.framework in Frameworks */,
6584
);
6685
runOnlyForDeploymentPostprocessing = 0;
6786
};
@@ -94,6 +113,8 @@
94113
97C146F01CF9000F007C117D /* Runner */,
95114
97C146EF1CF9000F007C117D /* Products */,
96115
331C8082294A63A400263BE5 /* RunnerTests */,
116+
A8F313E5A4F84EA3B0B1CBAD /* Pods */,
117+
A4E824D0853691A0CDF72AC5 /* Frameworks */,
97118
);
98119
sourceTree = "<group>";
99120
};
@@ -121,15 +142,40 @@
121142
path = Runner;
122143
sourceTree = "<group>";
123144
};
145+
A4E824D0853691A0CDF72AC5 /* Frameworks */ = {
146+
isa = PBXGroup;
147+
children = (
148+
79299F14C9FC67302368C35D /* Pods_Runner.framework */,
149+
7CACF6D24B1D5D95242CA3A1 /* Pods_RunnerTests.framework */,
150+
);
151+
name = Frameworks;
152+
sourceTree = "<group>";
153+
};
154+
A8F313E5A4F84EA3B0B1CBAD /* Pods */ = {
155+
isa = PBXGroup;
156+
children = (
157+
8E4EB9233CFC33D8B7C11848 /* Pods-Runner.debug.xcconfig */,
158+
C23B4AF676D39C6EAA1262E7 /* Pods-Runner.release.xcconfig */,
159+
38938D1EB0DC85B162648E6E /* Pods-Runner.profile.xcconfig */,
160+
1164DC81831EF5FF114DE0AD /* Pods-RunnerTests.debug.xcconfig */,
161+
5C0A6C9DC70293F4749032BF /* Pods-RunnerTests.release.xcconfig */,
162+
61D3F3E782BC9987F8A0BE4B /* Pods-RunnerTests.profile.xcconfig */,
163+
);
164+
name = Pods;
165+
path = Pods;
166+
sourceTree = "<group>";
167+
};
124168
/* End PBXGroup section */
125169

126170
/* Begin PBXNativeTarget section */
127171
331C8080294A63A400263BE5 /* RunnerTests */ = {
128172
isa = PBXNativeTarget;
129173
buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
130174
buildPhases = (
175+
FFE514B1E15472854325C74F /* [CP] Check Pods Manifest.lock */,
131176
331C807D294A63A400263BE5 /* Sources */,
132177
331C807F294A63A400263BE5 /* Resources */,
178+
B12CA869919DAAEEE1CAE96B /* Frameworks */,
133179
);
134180
buildRules = (
135181
);
@@ -145,12 +191,14 @@
145191
isa = PBXNativeTarget;
146192
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
147193
buildPhases = (
194+
90BDB1A90D9A57F07C7566E2 /* [CP] Check Pods Manifest.lock */,
148195
9740EEB61CF901F6004384FC /* Run Script */,
149196
97C146EA1CF9000F007C117D /* Sources */,
150197
97C146EB1CF9000F007C117D /* Frameworks */,
151198
97C146EC1CF9000F007C117D /* Resources */,
152199
9705A1C41CF9048500538489 /* Embed Frameworks */,
153200
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
201+
7FF29BFCF5A71F0B56D56B28 /* [CP] Embed Pods Frameworks */,
154202
);
155203
buildRules = (
156204
);
@@ -238,6 +286,45 @@
238286
shellPath = /bin/sh;
239287
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
240288
};
289+
7FF29BFCF5A71F0B56D56B28 /* [CP] Embed Pods Frameworks */ = {
290+
isa = PBXShellScriptBuildPhase;
291+
buildActionMask = 2147483647;
292+
files = (
293+
);
294+
inputFileListPaths = (
295+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
296+
);
297+
name = "[CP] Embed Pods Frameworks";
298+
outputFileListPaths = (
299+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
300+
);
301+
runOnlyForDeploymentPostprocessing = 0;
302+
shellPath = /bin/sh;
303+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
304+
showEnvVarsInLog = 0;
305+
};
306+
90BDB1A90D9A57F07C7566E2 /* [CP] Check Pods Manifest.lock */ = {
307+
isa = PBXShellScriptBuildPhase;
308+
buildActionMask = 2147483647;
309+
files = (
310+
);
311+
inputFileListPaths = (
312+
);
313+
inputPaths = (
314+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
315+
"${PODS_ROOT}/Manifest.lock",
316+
);
317+
name = "[CP] Check Pods Manifest.lock";
318+
outputFileListPaths = (
319+
);
320+
outputPaths = (
321+
"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
322+
);
323+
runOnlyForDeploymentPostprocessing = 0;
324+
shellPath = /bin/sh;
325+
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";
326+
showEnvVarsInLog = 0;
327+
};
241328
9740EEB61CF901F6004384FC /* Run Script */ = {
242329
isa = PBXShellScriptBuildPhase;
243330
alwaysOutOfDate = 1;
@@ -253,6 +340,28 @@
253340
shellPath = /bin/sh;
254341
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
255342
};
343+
FFE514B1E15472854325C74F /* [CP] Check Pods Manifest.lock */ = {
344+
isa = PBXShellScriptBuildPhase;
345+
buildActionMask = 2147483647;
346+
files = (
347+
);
348+
inputFileListPaths = (
349+
);
350+
inputPaths = (
351+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
352+
"${PODS_ROOT}/Manifest.lock",
353+
);
354+
name = "[CP] Check Pods Manifest.lock";
355+
outputFileListPaths = (
356+
);
357+
outputPaths = (
358+
"$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
359+
);
360+
runOnlyForDeploymentPostprocessing = 0;
361+
shellPath = /bin/sh;
362+
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";
363+
showEnvVarsInLog = 0;
364+
};
256365
/* End PBXShellScriptBuildPhase section */
257366

258367
/* Begin PBXSourcesBuildPhase section */
@@ -379,6 +488,7 @@
379488
};
380489
331C8088294A63A400263BE5 /* Debug */ = {
381490
isa = XCBuildConfiguration;
491+
baseConfigurationReference = 1164DC81831EF5FF114DE0AD /* Pods-RunnerTests.debug.xcconfig */;
382492
buildSettings = {
383493
BUNDLE_LOADER = "$(TEST_HOST)";
384494
CODE_SIGN_STYLE = Automatic;
@@ -396,6 +506,7 @@
396506
};
397507
331C8089294A63A400263BE5 /* Release */ = {
398508
isa = XCBuildConfiguration;
509+
baseConfigurationReference = 5C0A6C9DC70293F4749032BF /* Pods-RunnerTests.release.xcconfig */;
399510
buildSettings = {
400511
BUNDLE_LOADER = "$(TEST_HOST)";
401512
CODE_SIGN_STYLE = Automatic;
@@ -411,6 +522,7 @@
411522
};
412523
331C808A294A63A400263BE5 /* Profile */ = {
413524
isa = XCBuildConfiguration;
525+
baseConfigurationReference = 61D3F3E782BC9987F8A0BE4B /* Pods-RunnerTests.profile.xcconfig */;
414526
buildSettings = {
415527
BUNDLE_LOADER = "$(TEST_HOST)";
416528
CODE_SIGN_STYLE = Automatic;

example/ios/Runner.xcworkspace/contents.xcworkspacedata

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

example/pubspec.lock

+8-8
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,10 @@ packages:
150150
dependency: transitive
151151
description:
152152
name: meta
153-
sha256: "25dfcaf170a0190f47ca6355bdd4552cb8924b430512ff0cafb8db9bd41fe33b"
153+
sha256: bdb68674043280c3428e9ec998512fb681678676b3c54e773629ffe74419f8c7
154154
url: "https://pub.dev"
155155
source: hosted
156-
version: "1.14.0"
156+
version: "1.15.0"
157157
path:
158158
dependency: transitive
159159
description:
@@ -166,10 +166,10 @@ packages:
166166
dependency: transitive
167167
description:
168168
name: platform
169-
sha256: "12220bb4b65720483f8fa9450b4332347737cf8213dd2840d8b2c823e47243ec"
169+
sha256: "9b71283fc13df574056616011fb138fd3b793ea47cc509c189a6c3fa5f8a1a65"
170170
url: "https://pub.dev"
171171
source: hosted
172-
version: "3.1.4"
172+
version: "3.1.5"
173173
plugin_platform_interface:
174174
dependency: transitive
175175
description:
@@ -250,10 +250,10 @@ packages:
250250
dependency: transitive
251251
description:
252252
name: test_api
253-
sha256: "2419f20b0c8677b2d67c8ac4d1ac7372d862dc6c460cdbb052b40155408cd794"
253+
sha256: "5b8a98dafc4d5c4c9c72d8b31ab2b23fc13422348d2997120294d3bac86b4ddb"
254254
url: "https://pub.dev"
255255
source: hosted
256-
version: "0.7.1"
256+
version: "0.7.2"
257257
vector_math:
258258
dependency: transitive
259259
description:
@@ -266,10 +266,10 @@ packages:
266266
dependency: transitive
267267
description:
268268
name: vm_service
269-
sha256: "7475cb4dd713d57b6f7464c0e13f06da0d535d8b2067e188962a59bac2cf280b"
269+
sha256: f652077d0bdf60abe4c1f6377448e8655008eef28f128bc023f7b5e8dfeb48fc
270270
url: "https://pub.dev"
271271
source: hosted
272-
version: "14.2.2"
272+
version: "14.2.4"
273273
webdriver:
274274
dependency: transitive
275275
description:

0 commit comments

Comments
 (0)