Skip to content

Commit 2bab736

Browse files
authored
Merge pull request #19 from powersync-ja/feat/update-upstream-sqlite
Update upstream `sqlite3` package, update powersync core to 0.3.9
2 parents 38a9a7d + 8133698 commit 2bab736

Some content is hidden

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

55 files changed

+1414
-246
lines changed

.github/workflows/main.yml

+27-5
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
name: Compile sqlite3 for ${{ matrix.os }}
1616
runs-on: ${{ matrix.os }}
1717
env:
18-
SQLITE_YEAR: "2024"
19-
SQLITE_VERSION: "3470200"
18+
SQLITE_YEAR: "2025"
19+
SQLITE_VERSION: "3480000"
2020

2121
steps:
2222
- uses: actions/cache@v4
2323
id: cache_sqlite_build
2424
with:
2525
path: sqlite/out
26-
key: sqlite-v3-${{ runner.os }}-${{ env.SQLITE_VERSION }}
26+
key: sqlite-v4-${{ runner.os }}-${{ env.SQLITE_VERSION }}
2727
- name: Compile sqlite3 on Linux
2828
if: steps.cache_sqlite_build.outputs.cache-hit != 'true' && runner.os == 'Linux'
2929
run: |
@@ -38,6 +38,18 @@ jobs:
3838
cp sqlite3 ../out
3939
cp .libs/libsqlite3.so ../out
4040
cp *.h ../out
41+
- name: Compile sqlite3 on Linux (no autoinit)
42+
if: steps.cache_sqlite_build.outputs.cache-hit != 'true' && runner.os == 'Linux'
43+
working-directory: sqlite
44+
run: |
45+
curl https://www.sqlite.org/$SQLITE_YEAR/sqlite-amalgamation-$SQLITE_VERSION.zip --output sqlite.zip
46+
unzip sqlite.zip
47+
48+
cd sqlite-amalgamation-$SQLITE_VERSION
49+
gcc -DSQLITE_OMIT_AUTOINIT=1 -c -fPIC sqlite3.c -o sqlite3.o
50+
gcc -shared sqlite3.o -o libsqlite3.so
51+
mkdir ../out/without_autoinit
52+
cp libsqlite3.so ../out/without_autoinit
4153
- name: Compile sqlite3 on macOS
4254
if: steps.cache_sqlite_build.outputs.cache-hit != 'true' && runner.os == 'macOS'
4355
run: |
@@ -179,6 +191,16 @@ jobs:
179191
dart test -P ci
180192
working-directory: sqlite3/
181193

194+
- name: Test with SQLITE_OMIT_AUTOINIT
195+
if: runner.os == 'Linux'
196+
run: |
197+
ls $LD_LIBRARY_PATH
198+
dart run tool/check_compile_time_option.dart OMIT_AUTOINIT
199+
dart test -P ci
200+
env:
201+
LD_LIBRARY_PATH: ../sqlite/out/without_autoinit
202+
working-directory: sqlite3/
203+
182204
- name: Test sqlite3_test package
183205
run: |
184206
dart pub get
@@ -187,8 +209,8 @@ jobs:
187209

188210
- name: Web tests
189211
run: |
190-
curl https://simon-public.fsn1.your-objectstorage.com/assets/sqlite3/2.6.0/sqlite3.wasm -o example/web/sqlite3.wasm
191-
curl https://simon-public.fsn1.your-objectstorage.com/assets/sqlite3/2.6.0/sqlite3mc.wasm -o example/web/sqlite3mc.wasm
212+
curl https://simon-public.fsn1.your-objectstorage.com/assets/sqlite3/2.7.0/sqlite3.wasm -o example/web/sqlite3.wasm
213+
curl https://simon-public.fsn1.your-objectstorage.com/assets/sqlite3/2.7.0/sqlite3mc.wasm -o example/web/sqlite3mc.wasm
192214
dart test -P web -r expanded
193215
# If browsers behave differently on different platforms, surely that's not our fault...
194216
# So, only run browser tests on Linux to be faster.

.github/workflows/release.yml

+8
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,11 @@ jobs:
3535
file: sqlite3/.dart_tool/sqlite3_build/sqlite3_debug.init.wasm
3636
asset_name: sqlite3.debug.wasm
3737
tag: ${{ github.ref_name }}
38+
- name: Upload sqlite3 multipleciphers binary
39+
uses: svenstaro/upload-release-action@v2
40+
with:
41+
repo_token: ${{ secrets.GITHUB_TOKEN }}
42+
overwrite: true
43+
file: sqlite3/.dart_tool/sqlite3_build/sqlite3mc.wasm
44+
asset_name: sqlite3mc.wasm
45+
tag: ${{ github.ref_name }}

integration_tests/flutter_libs/ios/Flutter/AppFrameworkInfo.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
2323
<key>MinimumOSVersion</key>
24-
<string>8.0</string>
24+
<string>12.0</string>
2525
</dict>
2626
</plist>

integration_tests/flutter_libs/ios/Podfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Uncomment this line to define a global platform for your project
2-
# platform :ios, '9.0'
2+
# platform :ios, '12.0'
33

44
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
55
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
PODS:
2+
- Flutter (1.0.0)
3+
- integration_test (0.0.1):
4+
- Flutter
5+
- sqlite3 (3.48.0):
6+
- sqlite3/common (= 3.48.0)
7+
- sqlite3/common (3.48.0)
8+
- sqlite3/dbstatvtab (3.48.0):
9+
- sqlite3/common
10+
- sqlite3/fts5 (3.48.0):
11+
- sqlite3/common
12+
- sqlite3/perf-threadsafe (3.48.0):
13+
- sqlite3/common
14+
- sqlite3/rtree (3.48.0):
15+
- sqlite3/common
16+
- sqlite3/spellfix1 (3.48.0):
17+
- sqlite3/common
18+
- sqlite3_flutter_libs (0.0.1):
19+
- Flutter
20+
- FlutterMacOS
21+
- sqlite3 (~> 3.48.0)
22+
- sqlite3/dbstatvtab
23+
- sqlite3/fts5
24+
- sqlite3/perf-threadsafe
25+
- sqlite3/rtree
26+
27+
DEPENDENCIES:
28+
- Flutter (from `Flutter`)
29+
- integration_test (from `.symlinks/plugins/integration_test/ios`)
30+
- sqlite3/spellfix1
31+
- sqlite3_flutter_libs (from `.symlinks/plugins/sqlite3_flutter_libs/darwin`)
32+
33+
SPEC REPOS:
34+
trunk:
35+
- sqlite3
36+
37+
EXTERNAL SOURCES:
38+
Flutter:
39+
:path: Flutter
40+
integration_test:
41+
:path: ".symlinks/plugins/integration_test/ios"
42+
sqlite3_flutter_libs:
43+
:path: ".symlinks/plugins/sqlite3_flutter_libs/darwin"
44+
45+
SPEC CHECKSUMS:
46+
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
47+
integration_test: 4a889634ef21a45d28d50d622cf412dc6d9f586e
48+
sqlite3: 3da10a59910c809fb584a93aa46a3f05b785e12e
49+
sqlite3_flutter_libs: c26d86af4ad88f1465dc4e07e6dc6931eef228e4
50+
51+
PODFILE CHECKSUM: 6e2ae03bcd74fedeb24d86830a8bb8e09fba08f9
52+
53+
COCOAPODS: 1.16.2

integration_tests/flutter_libs/ios/Runner.xcodeproj/project.pbxproj

+96-5
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,18 @@
33
archiveVersion = 1;
44
classes = {
55
};
6-
objectVersion = 46;
6+
objectVersion = 54;
77
objects = {
88

99
/* Begin PBXBuildFile section */
1010
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
11+
2BD4455609F2CE79A3BE13DF /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C1CFA466F0D8F132A212BC36 /* Pods_Runner.framework */; };
1112
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
1213
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
1314
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
1415
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
1516
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
17+
78A318202AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage in Frameworks */ = {isa = PBXBuildFile; productRef = 78A3181F2AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage */; };
1618
/* End PBXBuildFile section */
1719

1820
/* Begin PBXCopyFilesBuildPhase section */
@@ -32,29 +34,46 @@
3234
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
3335
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
3436
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
37+
5E7190CDD9951245611B157A /* 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>"; };
3538
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
3639
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
3740
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
41+
7E7D24EEFEA94BD8EE13A226 /* 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>"; };
42+
8C9BAE5AED1B7453830E5757 /* 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>"; };
3843
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
3944
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
4045
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
4146
97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
4247
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
4348
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
4449
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
50+
C1CFA466F0D8F132A212BC36 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
4551
/* End PBXFileReference section */
4652

4753
/* Begin PBXFrameworksBuildPhase section */
4854
97C146EB1CF9000F007C117D /* Frameworks */ = {
4955
isa = PBXFrameworksBuildPhase;
5056
buildActionMask = 2147483647;
5157
files = (
58+
78A318202AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage in Frameworks */,
59+
2BD4455609F2CE79A3BE13DF /* Pods_Runner.framework in Frameworks */,
5260
);
5361
runOnlyForDeploymentPostprocessing = 0;
5462
};
5563
/* End PBXFrameworksBuildPhase section */
5664

5765
/* Begin PBXGroup section */
66+
602D98FCC5C4B07445C377FE /* Pods */ = {
67+
isa = PBXGroup;
68+
children = (
69+
7E7D24EEFEA94BD8EE13A226 /* Pods-Runner.debug.xcconfig */,
70+
5E7190CDD9951245611B157A /* Pods-Runner.release.xcconfig */,
71+
8C9BAE5AED1B7453830E5757 /* Pods-Runner.profile.xcconfig */,
72+
);
73+
name = Pods;
74+
path = Pods;
75+
sourceTree = "<group>";
76+
};
5877
9740EEB11CF90186004384FC /* Flutter */ = {
5978
isa = PBXGroup;
6079
children = (
@@ -72,6 +91,8 @@
7291
9740EEB11CF90186004384FC /* Flutter */,
7392
97C146F01CF9000F007C117D /* Runner */,
7493
97C146EF1CF9000F007C117D /* Products */,
94+
602D98FCC5C4B07445C377FE /* Pods */,
95+
DCFEB4362520DA7C246FF1C5 /* Frameworks */,
7596
);
7697
sourceTree = "<group>";
7798
};
@@ -98,19 +119,32 @@
98119
path = Runner;
99120
sourceTree = "<group>";
100121
};
122+
DCFEB4362520DA7C246FF1C5 /* Frameworks */ = {
123+
isa = PBXGroup;
124+
children = (
125+
C1CFA466F0D8F132A212BC36 /* Pods_Runner.framework */,
126+
);
127+
name = Frameworks;
128+
sourceTree = "<group>";
129+
};
101130
/* End PBXGroup section */
102131

103132
/* Begin PBXNativeTarget section */
104133
97C146ED1CF9000F007C117D /* Runner */ = {
134+
packageProductDependencies = (
135+
78A3181F2AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage */,
136+
);
105137
isa = PBXNativeTarget;
106138
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
107139
buildPhases = (
140+
FB4139E3603895AF84F0B080 /* [CP] Check Pods Manifest.lock */,
108141
9740EEB61CF901F6004384FC /* Run Script */,
109142
97C146EA1CF9000F007C117D /* Sources */,
110143
97C146EB1CF9000F007C117D /* Frameworks */,
111144
97C146EC1CF9000F007C117D /* Resources */,
112145
9705A1C41CF9048500538489 /* Embed Frameworks */,
113146
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
147+
ABDB1A1EEF0979391DF54B2D /* [CP] Embed Pods Frameworks */,
114148
);
115149
buildRules = (
116150
);
@@ -125,9 +159,12 @@
125159

126160
/* Begin PBXProject section */
127161
97C146E61CF9000F007C117D /* Project object */ = {
162+
packageReferences = (
163+
781AD8BC2B33823900A9FFBB /* XCLocalSwiftPackageReference "Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage" */,
164+
);
128165
isa = PBXProject;
129166
attributes = {
130-
LastUpgradeCheck = 1020;
167+
LastUpgradeCheck = 1510;
131168
ORGANIZATIONNAME = "";
132169
TargetAttributes = {
133170
97C146ED1CF9000F007C117D = {
@@ -171,10 +208,12 @@
171208
/* Begin PBXShellScriptBuildPhase section */
172209
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
173210
isa = PBXShellScriptBuildPhase;
211+
alwaysOutOfDate = 1;
174212
buildActionMask = 2147483647;
175213
files = (
176214
);
177215
inputPaths = (
216+
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
178217
);
179218
name = "Thin Binary";
180219
outputPaths = (
@@ -185,6 +224,7 @@
185224
};
186225
9740EEB61CF901F6004384FC /* Run Script */ = {
187226
isa = PBXShellScriptBuildPhase;
227+
alwaysOutOfDate = 1;
188228
buildActionMask = 2147483647;
189229
files = (
190230
);
@@ -197,6 +237,45 @@
197237
shellPath = /bin/sh;
198238
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
199239
};
240+
ABDB1A1EEF0979391DF54B2D /* [CP] Embed Pods Frameworks */ = {
241+
isa = PBXShellScriptBuildPhase;
242+
buildActionMask = 2147483647;
243+
files = (
244+
);
245+
inputFileListPaths = (
246+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
247+
);
248+
name = "[CP] Embed Pods Frameworks";
249+
outputFileListPaths = (
250+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
251+
);
252+
runOnlyForDeploymentPostprocessing = 0;
253+
shellPath = /bin/sh;
254+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
255+
showEnvVarsInLog = 0;
256+
};
257+
FB4139E3603895AF84F0B080 /* [CP] Check Pods Manifest.lock */ = {
258+
isa = PBXShellScriptBuildPhase;
259+
buildActionMask = 2147483647;
260+
files = (
261+
);
262+
inputFileListPaths = (
263+
);
264+
inputPaths = (
265+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
266+
"${PODS_ROOT}/Manifest.lock",
267+
);
268+
name = "[CP] Check Pods Manifest.lock";
269+
outputFileListPaths = (
270+
);
271+
outputPaths = (
272+
"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
273+
);
274+
runOnlyForDeploymentPostprocessing = 0;
275+
shellPath = /bin/sh;
276+
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";
277+
showEnvVarsInLog = 0;
278+
};
200279
/* End PBXShellScriptBuildPhase section */
201280

202281
/* Begin PBXSourcesBuildPhase section */
@@ -272,7 +351,7 @@
272351
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
273352
GCC_WARN_UNUSED_FUNCTION = YES;
274353
GCC_WARN_UNUSED_VARIABLE = YES;
275-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
354+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
276355
MTL_ENABLE_DEBUG_INFO = NO;
277356
SDKROOT = iphoneos;
278357
SUPPORTED_PLATFORMS = iphoneos;
@@ -354,7 +433,7 @@
354433
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
355434
GCC_WARN_UNUSED_FUNCTION = YES;
356435
GCC_WARN_UNUSED_VARIABLE = YES;
357-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
436+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
358437
MTL_ENABLE_DEBUG_INFO = YES;
359438
ONLY_ACTIVE_ARCH = YES;
360439
SDKROOT = iphoneos;
@@ -403,7 +482,7 @@
403482
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
404483
GCC_WARN_UNUSED_FUNCTION = YES;
405484
GCC_WARN_UNUSED_VARIABLE = YES;
406-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
485+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
407486
MTL_ENABLE_DEBUG_INFO = NO;
408487
SDKROOT = iphoneos;
409488
SUPPORTED_PLATFORMS = iphoneos;
@@ -490,6 +569,18 @@
490569
defaultConfigurationName = Release;
491570
};
492571
/* End XCConfigurationList section */
572+
/* Begin XCLocalSwiftPackageReference section */
573+
781AD8BC2B33823900A9FFBB /* XCLocalSwiftPackageReference "Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage" */ = {
574+
isa = XCLocalSwiftPackageReference;
575+
relativePath = Flutter/ephemeral/Packages/FlutterGeneratedPluginSwiftPackage;
576+
};
577+
/* End XCLocalSwiftPackageReference section */
578+
/* Begin XCSwiftPackageProductDependency section */
579+
78A3181F2AECB46A00862997 /* FlutterGeneratedPluginSwiftPackage */ = {
580+
isa = XCSwiftPackageProductDependency;
581+
productName = FlutterGeneratedPluginSwiftPackage;
582+
};
583+
/* End XCSwiftPackageProductDependency section */
493584
};
494585
rootObject = 97C146E61CF9000F007C117D /* Project object */;
495586
}

integration_tests/flutter_libs/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata

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

0 commit comments

Comments
 (0)