What problem does it solve? iPad apps that lack proper orientation support get rejected under App Store guideline 2.4.1 when reviewers rotate the device and the layout breaks. This Skill scans your iOS project to find missing iPad orientation keys, portrait-only orientation locks, and forced-rotation patterns before submission. ## Core Features & Use Cases - Info.plist Validation: Checks that UISupportedInterfaceOrientations~ipad exists and includes at least one landscape value. - Code-Level Detection: Greps Swift and Objective-C sources for supportedInterfaceOrientations overrides returning portrait-only masks, shouldAutorotate returning false, and third-party orientation-lock calls. - Prioritized Findings: Outputs a tiered findings list (CRITICAL/HIGH/MEDIUM/LOW) with file paths, line numbers, and actionable fixes mapped to guideline 2.4.1. - Use Case: Before submitting a universal app, run this audit to confirm the iPad reviewer can rotate the device without breaking your layout. ## Quick Start Ask the assistant to run the orientation-support audit on your iOS project root to verify iPad orientation handling before App Store submission.