{"record":{"id":"7f40f677e73f017a","repo":"DioxusLabs/dioxus","slug":"no-ios-app-bundle-found-to-package-into-an-ipa","errorCode":null,"errorMessage":"No iOS .app bundle found to package into an .ipa","messagePattern":"No iOS \\.app bundle found to package into an \\.ipa","errorType":"exception","errorClass":"anyhow::Error","httpStatus":null,"severity":"error","filePath":"packages/cli/src/bundler/ios.rs","lineNumber":42,"sourceCode":"        Ok(vec![app_path])\n    }\n\n    /// Package a signed iOS `.app` into an App Store distributable `.ipa`.\n    pub(crate) async fn bundle_ios_ipa(&self, bundles: &[Bundle]) -> Result<IosBundled> {\n        validate_ios_ipa_target(&self.target(), self.binary_arch())?;\n\n        let (app_paths, synthesized_app_paths) = if let Some(app_bundle) = bundles\n            .iter()\n            .find(|bundle| bundle.package_type == PackageType::IosApp)\n        {\n            (app_bundle.bundle_paths.clone(), Vec::new())\n        } else {\n            let paths = self.bundle_ios_app().await?;\n            (paths.clone(), paths)\n        };\n\n        if app_paths.is_empty() {\n            bail!(\"No iOS .app bundle found to package into an .ipa\");\n        }\n\n        let app_path = &app_paths[0];\n        if !app_path.exists() {\n            bail!(\n                \"iOS .app bundle does not exist at expected path: {}\",\n                app_path.display()\n            );\n        }\n\n        verify_codesigned_app(app_path).await?;\n\n        let output_dir = self.project_out_directory().join(\"ipa\");\n        std::fs::create_dir_all(&output_dir)?;\n\n        let ipa_name = format!(\n            \"{}_{}_{}.ipa\",\n            self.product_name(),","sourceCodeStart":24,"sourceCodeEnd":60,"githubUrl":"https://github.com/DioxusLabs/dioxus/blob/24f6a829df0dfa203961a98ea4cae21c2ff27e28/packages/cli/src/bundler/ios.rs#L24-L60","documentation":"bundle_ios_ipa found no .app bundle paths to package — neither a prior IosApp bundle nor a freshly assembled one produced any output. Without an .app there is nothing to zip into an .ipa, so the bundler bails.","triggerScenarios":"Thrown at packages/cli/src/bundler/ios.rs:42 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":["No .app bundle exists to package. Build the iOS app before creating an .ipa."],"exampleFix":null,"handlingStrategy":"validation","validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"24f6a829df0dfa203961a98ea4cae21c2ff27e28","analyzedAt":"2026-08-23T07:10:14.078Z","contentChangedAt":"2026-08-23T07:10:14.078Z","schemaVersion":2},"datasetVersion":"2026-09-14T05:17:10.506Z"}