Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions RxNote/RxNote.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,8 @@
/* Begin XCBuildConfiguration section */
DF6625822F29137000333552 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReferenceAnchor = DF66255F2F29136F00333552 /* RxNote */;
baseConfigurationReferenceRelativePath = Config/Debug.xcconfig;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = icon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
Expand Down Expand Up @@ -647,6 +649,8 @@
};
DF6625832F29137000333552 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReferenceAnchor = DF66255F2F29136F00333552 /* RxNote */;
baseConfigurationReferenceRelativePath = Config/Release.xcconfig;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = icon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</TestPlans>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
buildConfiguration = "Release"
Copy link

Copilot AI Mar 2, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changing LaunchAction's buildConfiguration to "Release" means that every time a developer presses Run in this scheme, the app is built with the Release configuration (production API URL, full optimizations, no debugger-friendly DWARF info). This makes day-to-day development harder: variables may be optimised away in the debugger, and the app will connect to the production backend instead of localhost:3000. The LaunchAction should stay on "Debug" unless the explicit intent is always to run a production build during development. Compare with RxNoteClips.xcscheme which keeps its LaunchAction on "Debug" (line 39 of that file).

Suggested change
buildConfiguration = "Release"
buildConfiguration = "Debug"

Copilot uses AI. Check for mistakes.
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
Expand Down
Loading