Home / Companies / Expo / Blog / July 2026

July 2026 Summaries

8 posts from Expo

Filter
Month: Year:
Post Summaries Back to Blog
David Davidov, a founding engineer at Posh, details the challenges and solutions his team faced in automating their mobile CI/CD pipelines to enhance app release efficiency. Initially, manual processes and unstable GitHub Actions hindered their workflow, leading to cumbersome weekly releases. By leveraging Expo's tools like fingerprinting, workflows, and OTA updates, they redesigned their system to automate many aspects of the release process while maintaining essential manual approval points. This transformation allowed Posh to shift from weekly manual releases to nearly monthly store releases and multiple OTA updates per week, significantly improving release velocity and positioning their app as the top entertainment app on the App Store. The new workflow includes PR previews, OTA branches, version branches, and a master workflow to streamline the release cycle, with automated notifications to keep the team informed. This overhaul has reduced manual errors and cross-department communication issues, allowing the team to focus more on creative development rather than operational drudgery.
Jul 23, 2026 1,648 words in the original blog post.
Detour is a tool developed by Software Mansion to address the challenges of deferred deep linking in mobile apps built with Expo, focusing on preserving user intent from the moment a link is clicked to the app's first launch. While traditional deep links work well for installed apps, they fail when users install the app after clicking a link, leading to an "Installation Gap" where the original link context is lost. Detour integrates directly with the Expo Router to resolve links before the first screen renders, ensuring the navigation logic is seamless and synchronized from the start. This approach avoids common issues like duplicate navigation events and race conditions with authentication gates. On Android, Detour uses deterministic matching through the Install Referrer API, while on iOS, it employs probabilistic matching due to privacy limitations. By aligning deep linking with the router, Detour enhances the user experience by preventing glitches and ensuring a smooth transition from web to app. As the platform evolves, Detour aims to cover more aspects of the user journey while remaining developer-friendly and cost-effective, inviting feedback from the Expo community for further development.
Jul 22, 2026 947 words in the original blog post.
App variants offer a significant improvement in the development experience by allowing multiple builds of an app, such as development, preview, and production, to be installed side by side on a single device, each with its own unique identifier. This approach eliminates the repetitive process of uninstalling and reinstalling different builds for debugging purposes. The concept hinges on two independent settings: identity, which is the app's unique identifier, and environment, which includes variables that affect app behavior. Developers can configure app variants through dynamic configurations that read environment variables, enabling each variant to have distinct settings like API URLs and analytics keys. These configurations work in tandem with tools like EAS Build to manage builds and environment settings effectively, ensuring that each variant is correctly identified and behaves as expected. This method not only streamlines development workflows but also prevents potential issues like test data polluting production environments, making it a valuable enhancement for app developers.
Jul 21, 2026 3,062 words in the original blog post.
Liam Du's follow-up post details the growth journey of Wellspoken, an AI-powered communication coach app designed to enhance professional speaking skills, from its initial launch to achieving hundreds of thousands of downloads and significant monthly active users. The app's success is attributed to its focus on product quality, which drives user retention and engagement, and is bolstered by strong marketing strategies such as App Store Optimization (ASO) and a User Generated Content (UGC) campaign. Wellspoken operates on a subscription model supported by RevenueCat, with conversion improvements driven by extensive A/B testing of paywall elements and the introduction of the Wellspoken Index, a scoring system that quantifies communication skills across six dimensions. The app's scalability is managed through Expo's EAS Build and OTA Update, allowing rapid deployment and fixes without heavy infrastructure, which is crucial for maintaining the app's performance as it expands. The post emphasizes the importance of a robust product foundation, the synergy between acquisition and conversion efforts, and the operational agility provided by over-the-air updates, while setting sights on future international expansion.
Jul 14, 2026 2,049 words in the original blog post.
Building mobile apps with AI involves using three main tools: skills, MCP servers, and an AI workflow to effectively manage the development process. Skills are instruction files that AI coding agents read as needed, minimizing resource use by loading detailed instructions only when required. MCP servers connect AI agents to external services, such as build dashboards, allowing them to read logs and drive simulators, though they are more resource-intensive than skills. The AI workflow is crucial for maintaining efficient communication, with a recommendation to keep conversations focused and under half of the context window to prevent performance issues. The process begins by setting up a React Native app using create-expo-app, adding relevant skills, connecting an MCP server, and employing effective context management. This approach not only streamlines the development of mobile applications but also ensures that the AI agent is focused on delivering specific outcomes without unnecessary context bloat.
Jul 13, 2026 2,575 words in the original blog post.
Integrating a bottom tab bar with a hamburger menu for cross-platform apps can be challenging, especially when it involves combining navigation patterns like a persistent bottom tab bar with a global sidebar drawer, which is common but can lead to performance and gesture conflicts if not implemented carefully. Using Expo Router, developers can map navigation flows directly onto a file-system directory, maintaining modular and maintainable code while leveraging native navigation components. The architectural approach suggests nesting navigation patterns only when beneficial, with considerations for state synchronization and platform gesture conflicts. The core architecture involves organizing the project directory to mirror the layout tree, using the Expo Router to handle navigation hierarchies, and ensuring UI layer micro-interactions through custom components. A scalable theme architecture is achieved by using design tokens to apply theme changes seamlessly across nested boundaries. Overall, this approach requires discipline and a clear understanding of when to apply dual-navigation hierarchies, starting with rendering the drawer layout before nesting tabs and addressing gesture constraints.
Jul 11, 2026 769 words in the original blog post.
In a personal reflection from a talk given at App.js 2026 in Kraków, the author shares a poignant story about using software engineering skills to create a communication tool for his father, who was incapacitated by Parkinson's disease. This experience underscores the transformative power of modern software tools, particularly within the open-source community, to provide leverage, velocity, and momentum in development. The author argues that the current discourse around AI and automation misinterprets the industry's trajectory, suggesting that rather than erasing jobs, these technologies empower individual developers to achieve more with less. As software development becomes more accessible and efficient, the barriers to bringing ideas to life are diminishing, enabling more people from diverse backgrounds to create impactful solutions. The real shift is not in the disappearance of developers but in the acceleration of creativity and innovation, where ambition and the ability to make sound judgments become more valuable than ever. This evolution has expanded the audience for software creation, allowing individuals to accomplish what previously required large teams, thus heralding an exciting era for builders worldwide.
Jul 06, 2026 1,429 words in the original blog post.
Roman Kuchařík, co-founder of Tapaya, discusses the development of a software-only SoftPOS infrastructure that simplifies the process of accepting in-person card payments by turning mobile devices into secure payment terminals. At a Hackathon in Prague, Tapaya tested the speed of building a production-ready POS application using Expo, achieving the first approved payment in less than an afternoon. The app, designed for a local coffee shop, demonstrated the integration of modern payment infrastructure into a React Native application, featuring inventory management, transaction handling, and contactless card payment capabilities without requiring external terminals. Expo was chosen for its ability to simplify native mobile setup, utilizing Config Plugins and EAS Build to streamline the process. The integration involved adding a Config Plugin, installing the SDK, setting up backend authentication, and initializing the SDK, with Tapaya's SDK abstracting complex backend processes like EMV communication and payment compliance. With the payment infrastructure in place, future developments focus on enhancing the merchant experience, such as adding Bluetooth printer support and offline transaction queuing, highlighting the effectiveness of the streamlined integration for AI-assisted development workflows.
Jul 01, 2026 1,292 words in the original blog post.