Skip to content

Commit 9ce000f

Browse files
Teodor Ciuraruclaude
andcommitted
fix(flutter): remove iphonesimulator from Release/Profile SUPPORTED_PLATFORMS
Flutter does not support release or profile builds on iOS simulators. This reverts the SUPPORTED_PLATFORMS to only include iphoneos for these configurations, matching Flutter's default behavior. Reference: flutter/flutter#38905 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 9abf7db commit 9ce000f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flutter_app/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@
478478
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
479479
MTL_ENABLE_DEBUG_INFO = NO;
480480
SDKROOT = iphoneos;
481-
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
481+
SUPPORTED_PLATFORMS = iphoneos;
482482
TARGETED_DEVICE_FAMILY = "1,2";
483483
VALIDATE_PRODUCT = YES;
484484
};
@@ -665,7 +665,7 @@
665665
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
666666
MTL_ENABLE_DEBUG_INFO = NO;
667667
SDKROOT = iphoneos;
668-
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
668+
SUPPORTED_PLATFORMS = iphoneos;
669669
SWIFT_COMPILATION_MODE = wholemodule;
670670
SWIFT_OPTIMIZATION_LEVEL = "-O";
671671
TARGETED_DEVICE_FAMILY = "1,2";

0 commit comments

Comments
 (0)