SShortSingh.
Back to feed

How to Fix Apple App Store ITMS-90035 Signing Error in iOS Builds

0
·1 views

The ITMS-90035 error occurs when uploading an iOS app to the App Store and signals a failed signature verification, not a corrupted IPA file. It is commonly caused by using a Development certificate instead of an iOS Distribution certificate, or a mismatch between the provisioning profile and the Bundle ID. Cross-platform frameworks like Flutter, React Native, and CI tools like Jenkins are especially prone to this error due to inconsistent signing configurations. Developers are advised to regenerate the full signing chain — including Bundle ID, certificate, and provisioning profile — ensuring all three are consistent across the Apple Developer Portal and build settings. Tools like AppUploader can help Windows users manage certificates and upload IPAs without requiring Xcode, while CLI-based uploads provide more detailed logs for diagnosing root causes.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

PromptOT Adds MCP Server to Let AI Coding Tools Manage Production Prompts

PromptOT, a prompt management platform for production LLM applications, has integrated a Model Context Protocol (MCP) server to allow AI coding assistants like Claude, Cursor, and Codex to interact directly with prompt workspaces. Previously, developers had to leave their AI tools and manually update prompts through a separate dashboard, creating a disruptive context switch. The new MCP server exposes 23 structured tools across five areas, enabling assistants to list, create, update, version, and publish prompts without unrestricted database access. Using the standardized MCP protocol means PromptOT needs only one integration instead of separate custom builds for each AI client. The update allows teams to manage prompt blocks, runtime variables, versioning, and rollbacks entirely from within their preferred AI-assisted development environment.

0
ProgrammingDEV Community ·

AI Is Forcing Developers to Rethink the Culture of Building in Public

For years, developers built credibility by openly sharing code, blog posts, and ideas — but the rise of AI is disrupting that culture. Detailed technical content published online can now be fed into large language models and rapidly turned into working prototypes, pitch decks, or monetizable products, eroding the link between an original idea and its creator. Attribution has become harder to trace as AI-generated implementations obscure the lineage of shared concepts. In response, many developers are shifting toward sharing the 'why' behind their work rather than the 'how,' and gravitating toward private, trust-based communities instead of open forums. While the open-source social contract of the 2010s may be fading, developers argue their edge lies in taste, lived experience, and the judgment to decide what is worth building — qualities AI cannot replicate.

0
ProgrammingDEV Community ·

CSP via Meta Tag: How It Works, Its Limits, and When to Use It

Developers can define a Content Security Policy directly in HTML using a meta tag instead of HTTP response headers, which is useful for static sites, prototypes, and platforms like GitHub Pages that do not allow custom headers. However, the meta tag approach has notable limitations: the browser only enforces the policy after parsing the tag, meaning resources loaded earlier may bypass it. Several directives — including report-uri, report-to, frame-ancestors, and sandbox — are ignored when set via a meta tag, eliminating violation reporting and clickjacking protection. HTTP response headers are processed before any page content renders, making them the stronger and preferred option for production environments. Best practice recommends reserving the meta tag method for development or constrained environments, and always placing it as early as possible within the document head.

0
ProgrammingDEV Community ·

How Replacing a Metrics God Class with Per-Subsystem Modules Improved an OTel Codebase

A software team refactored their OpenTelemetry metrics architecture by replacing a single monolithic god class with separate per-subsystem modules, each owning its own instruments. The original design used multiple inheritance mixins on one global Metrics object, which caused silent attribute shadowing and forced developers to call methods through explicit base classes to avoid name collisions. OpenTelemetry's core constraint — that instruments can be created only once per process and never unregistered — means every codebase must carefully manage a process-level singleton. The new pattern solves this with a frozen dataclass holding OTel handles, a memoized factory function acting as the singleton, and a lightweight wrapper class instantiated per request. This approach enforces composition over inheritance, keeping metric definitions close to the code that uses them and eliminating the risk of silently lost metrics.