Skip to content

Commit 33d3699

Browse files
committed
fix: debug run scheme
1 parent f6024a5 commit 33d3699

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

dart_native/example/ios/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ EXTERNAL SOURCES:
2323

2424
SPEC CHECKSUMS:
2525
CocoaLumberjack: e8955b9d337ac307103b0a34fd141c32f27e53c5
26-
dart_native: ba4adc85a5cf6faafbfa7de2252397388d9480da
26+
dart_native: e10848b23206739fc16a2455f41847418a8ceb3d
2727
Flutter: 0e3d915762c693b495b44d77113d4970485de6ec
2828

2929
PODFILE CHECKSUM: f10e42e188a012076f9d5e111f499229a501832a

dart_native/example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -276,10 +276,12 @@
276276
inputPaths = (
277277
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh",
278278
"${PODS_ROOT}/../Flutter/Flutter.framework",
279+
"${PODS_ROOT}/../.symlinks/plugins/dart_native/ios/DartNative.framework",
279280
);
280281
name = "[CP] Embed Pods Frameworks";
281282
outputPaths = (
282283
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Flutter.framework",
284+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DartNative.framework",
283285
);
284286
runOnlyForDeploymentPostprocessing = 0;
285287
shellPath = /bin/sh;

dart_native/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
buildConfiguration = "Debug"
4444
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
4545
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
46-
enableAddressSanitizer = "YES"
4746
enableASanStackUseAfterReturn = "YES"
4847
launchStyle = "0"
4948
useCustomWorkingDirectory = "NO"
0 Bytes
Binary file not shown.

dart_native/ios/dart_native.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ Write native code using Dart. This package liberates you from native code and lo
1515
s.source = { :path => '.' }
1616

1717
# Debug
18-
s.source_files = 'Classes/**/*', 'libffi/*.h', 'common/**/*'
19-
s.vendored_libraries = 'libffi/libffi.a'
18+
# s.source_files = 'Classes/**/*', 'libffi/*.h', 'common/**/*'
19+
# s.vendored_libraries = 'libffi/libffi.a'
2020

2121
# Release
22-
# s.source_files = 'Classes/DartNativePlugin.*'
23-
# s.vendored_frameworks = 'DartNative.framework'
22+
s.source_files = 'Classes/DartNativePlugin.*'
23+
s.vendored_frameworks = 'DartNative.framework'
2424

2525
s.public_header_files = 'Classes/DartNativePlugin.h'
2626
s.dependency 'Flutter'

0 commit comments

Comments
 (0)