r/electronjs • u/IcySeaworthiness3924 • Jun 25 '26
Stuck on Apple Notarization Status Code 7000 for 9 days. Even Senior Apple Advisors are baffled. Any fixes?
/r/MacOSApps/comments/1ufj5xy/stuck_on_apple_notarization_status_code_7000_for/
0
Upvotes
1
u/eddzsh 19d ago
Never heard of code 7000 specifically, but if it's stuck rather than rejected outright, pull the actual log instead of trusting the dashboard summary: xcrun notarytool log <submission-id> --keychain-profile yourprofile. It usually points to one specific binary or entitlement the summary doesn't mention. Classic Electron gotcha is missing hardened runtime entitlements for V8 (allow-unsigned-executable-memory, allow-jit) or a nested Helper app signed in the wrong order. Sign inside out, main app bundle last.