Conversation
There was a problem hiding this comment.
This PR is being reviewed by Cursor Bugbot
Details
Your team is on the Bugbot Free tier. On this plan, Bugbot will review limited PRs each billing cycle for each member of your team.
To receive Bugbot reviews on all of your PRs, visit the Cursor dashboard to activate Pro and start your 14-day free trial.
| </EnvironmentVariables> | ||
| <StoreKitConfigurationFileReference | ||
| identifier = "../../Shared/RevenueCat/Configuration.storekit"> | ||
| identifier = "../../../../../Library/Developer/Xcode/DerivedData/awsary-anovxdcynscufecdogtsdwmqmrva/SourcePackages/checkouts/purchases-ios-spm/Examples/rc-maestro/rc-maestro/Resources/StoreKit/StoreKitConfiguration.storekit"> |
There was a problem hiding this comment.
Bug: StoreKit Configuration Path Issue
The Xcode scheme's StoreKit configuration file reference now points to an absolute, machine-specific DerivedData path. This will prevent builds on other developer machines and CI/CD systems, particularly as the original configuration file was removed and the new StoreKitConfiguration.storekit isn't referenced correctly.
| INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait"; | ||
| INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown"; | ||
| IPHONEOS_DEPLOYMENT_TARGET = 18.0; | ||
| IPHONEOS_DEPLOYMENT_TARGET = 26.0; |
There was a problem hiding this comment.
Bug: Invalid iOS Deployment Target
The iOS deployment target is set to an invalid version, 26.0, in the project's build settings. This prevents the app from being archived or distributed on the App Store.
This is the first release of iOS26