<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Expo</title>
    <description>The latest articles on DEV Community by Expo (@expo).</description>
    <link>https://dev.to/expo</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Forganization%2Fprofile_image%2F1976%2F6ef4a713-63b7-4933-ad4e-7a428c800c79.png</url>
      <title>DEV Community: Expo</title>
      <link>https://dev.to/expo</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/expo"/>
    <language>en</language>
    <item>
      <title>Control SwiftUI and Compose State Synchronously with Worklets in Expo UI</title>
      <dc:creator>Dan</dc:creator>
      <pubDate>Thu, 28 May 2026 20:20:50 +0000</pubDate>
      <link>https://dev.to/expo/control-swiftui-and-compose-state-synchronously-with-worklets-in-expo-ui-3ado</link>
      <guid>https://dev.to/expo/control-swiftui-and-compose-state-synchronously-with-worklets-in-expo-ui-3ado</guid>
      <description>&lt;p&gt;React Native developers have long dealt with the friction of bridging JavaScript with native UI threads. Every time you need to update native state, you send a message across the bridge, wait for the round-trip, and hope the user doesn't notice the delay. Expo UI in SDK 56 changes this with worklet integration.&lt;/p&gt;

&lt;p&gt;You can now control SwiftUI and Compose state directly on the UI thread, with zero JavaScript round-trips. Here's what that looks like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;Host&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;TextInput&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;useNativeState&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;@expo/ui&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="k"&gt;default&lt;/span&gt; &lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;Screen&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;value&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;useNativeState&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;''&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;

  &lt;span class="k"&gt;return &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
    &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;Host&lt;/span&gt; &lt;span class="nx"&gt;matchContents&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt;
      &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;TextInput&lt;/span&gt;
        &lt;span class="nx"&gt;value&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="nx"&gt;value&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;
        &lt;span class="nx"&gt;placeholder&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Type something&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;
        &lt;span class="nx"&gt;onChangeText&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="p"&gt;{(&lt;/span&gt;&lt;span class="nx"&gt;value&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
          &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;worklet&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
          &lt;span class="c1"&gt;// Runs synchronously on the UI thread, on every keystroke.&lt;/span&gt;
          &lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;[UI thread] typed:&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;value&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
        &lt;span class="p"&gt;}}&lt;/span&gt;
      &lt;span class="sr"&gt;/&lt;/span&gt;&lt;span class="err"&gt;&amp;gt;
&lt;/span&gt;    &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="sr"&gt;/Host&lt;/span&gt;&lt;span class="err"&gt;&amp;gt;
&lt;/span&gt;  &lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;Note: you'll need &lt;code&gt;react-native-reanimated&lt;/code&gt; and &lt;code&gt;react-native-worklets&lt;/code&gt; installed in your project for this to work.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  How this actually works
&lt;/h2&gt;

&lt;p&gt;Two pieces make this possible:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;useNativeState&lt;/code&gt; creates an &lt;code&gt;ObservableState&lt;/code&gt; - a &lt;code&gt;SharedObject&lt;/code&gt; that lives in native code and gets observed by both SwiftUI and Compose. On iOS, it maps to an &lt;code&gt;ObservableObject&lt;/code&gt;. On Android, it's a &lt;code&gt;MutableState&lt;/code&gt;. Both platforms watch this state and re-render when it changes.&lt;/p&gt;

&lt;p&gt;Worklet callbacks like &lt;code&gt;onTextChange&lt;/code&gt; run directly on the UI thread when the native view fires its event. No bridge crossing required.&lt;/p&gt;

&lt;p&gt;Put them together: each keystroke in the &lt;code&gt;TextField&lt;/code&gt; updates the shared &lt;code&gt;text&lt;/code&gt; state, executes your worklet, and triggers SwiftUI and Compose to re-render. All on the UI thread, all in the same frame.&lt;/p&gt;

&lt;p&gt;If you know SwiftUI, this pattern should click immediately. The TypeScript above translates almost directly:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight swift"&gt;&lt;code&gt;&lt;span class="kd"&gt;struct&lt;/span&gt; &lt;span class="kt"&gt;Screen&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kt"&gt;View&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="kd"&gt;@State&lt;/span&gt; &lt;span class="k"&gt;var&lt;/span&gt; &lt;span class="nv"&gt;text&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s"&gt;""&lt;/span&gt;

  &lt;span class="k"&gt;var&lt;/span&gt; &lt;span class="nv"&gt;body&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kd"&gt;some&lt;/span&gt; &lt;span class="kt"&gt;View&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="kt"&gt;TextField&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"Type something"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nv"&gt;text&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;$text&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
      &lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;onChange&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;of&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;text&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="n"&gt;_&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;newValue&lt;/span&gt; &lt;span class="k"&gt;in&lt;/span&gt;
        &lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"[UI thread] typed:"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;newValue&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
      &lt;span class="p"&gt;}&lt;/span&gt;
  &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;code&gt;useNativeState&lt;/code&gt; acts like &lt;code&gt;@State&lt;/code&gt;, &lt;code&gt;text={text}&lt;/code&gt; works like &lt;code&gt;TextField(text: $text)&lt;/code&gt;, and the worklet &lt;code&gt;onTextChange&lt;/code&gt; behaves like &lt;code&gt;.onChange(of:)&lt;/code&gt;. Compose developers will recognize the same shape with &lt;code&gt;mutableStateOf&lt;/code&gt; and &lt;code&gt;onValueChange&lt;/code&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Input masking without flicker
&lt;/h2&gt;

&lt;p&gt;The immediate win here is input masking that actually works. Since the worklet can modify &lt;code&gt;text.value&lt;/code&gt; in the same frame as the keystroke, users never see the unmasked character. No async delays, no visible corrections.&lt;/p&gt;

&lt;p&gt;Take this credit card field that formats &lt;code&gt;4242424242424242&lt;/code&gt; into &lt;code&gt;4242 4242 4242 4242&lt;/code&gt; as you type:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;Host&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;TextInput&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;useNativeState&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;@expo/ui/swift-ui&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="k"&gt;default&lt;/span&gt; &lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;CardNumberField&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;value&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;useNativeState&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;''&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;

  &lt;span class="k"&gt;return &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
    &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;Host&lt;/span&gt; &lt;span class="nx"&gt;matchContents&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt;
      &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;TextInput&lt;/span&gt;
        &lt;span class="nx"&gt;value&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="nx"&gt;value&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;
        &lt;span class="nx"&gt;placeholder&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Card number&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;
        &lt;span class="nx"&gt;onChangeText&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="p"&gt;{(&lt;/span&gt;&lt;span class="nx"&gt;value&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
          &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;worklet&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
          &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;digits&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;value&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;replace&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sr"&gt;/&lt;/span&gt;&lt;span class="se"&gt;\\&lt;/span&gt;&lt;span class="sr"&gt;D/g&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;''&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nf"&gt;slice&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;16&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
          &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;masked&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;digits&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;replace&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sr"&gt;/&lt;/span&gt;&lt;span class="se"&gt;(&lt;/span&gt;&lt;span class="sr"&gt;.&lt;/span&gt;&lt;span class="se"&gt;{4})&lt;/span&gt;&lt;span class="sr"&gt;/g&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;$1 &lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nf"&gt;trim&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
          &lt;span class="nx"&gt;text&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;value&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;masked&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
        &lt;span class="p"&gt;}}&lt;/span&gt;
      &lt;span class="sr"&gt;/&lt;/span&gt;&lt;span class="err"&gt;&amp;gt;
&lt;/span&gt;    &lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="sr"&gt;/Host&lt;/span&gt;&lt;span class="err"&gt;&amp;gt;
&lt;/span&gt;  &lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The formatting happens instantly on the UI thread. You can use this pattern for phone numbers, dates, currency formatting, or any scenario where display text needs to differ from raw input.&lt;/p&gt;

&lt;h2&gt;
  
  
  Beyond input masking
&lt;/h2&gt;

&lt;p&gt;Worklet integration does more than solve input problems. It gives Expo UI a path to expose synchronous alternatives alongside existing async APIs. You pick the approach that fits your interaction needs.&lt;/p&gt;

&lt;p&gt;This same native state + worklet pattern opens up much more of SwiftUI and Compose's state-driven APIs for React Native. Input masking is just the beginning.&lt;/p&gt;

&lt;h2&gt;
  
  
  Getting started
&lt;/h2&gt;

&lt;p&gt;Worklet support works in both &lt;code&gt;@expo/ui/swift-ui&lt;/code&gt; and &lt;code&gt;@expo/ui/jetpack-compose&lt;/code&gt;. It shipped in SDK 56. &lt;code&gt;TextInput&lt;/code&gt; supports sync callbacks now, with more form controls coming in future releases.&lt;/p&gt;

&lt;p&gt;This post is based on content from the &lt;a href="https://expo.dev/blog/worklet-integration-in-expo-ui-synchronously-controlling-swiftui-and-compose-state" rel="noopener noreferrer"&gt;Expo blog&lt;/a&gt;. Follow &lt;a href="https://dev.to/expo"&gt;@expo&lt;/a&gt; for more React Native content.&lt;/p&gt;

</description>
      <category>expo</category>
      <category>mobile</category>
      <category>javascript</category>
      <category>reactnative</category>
    </item>
    <item>
      <title>How to upgrade to Expo SDK 56</title>
      <dc:creator>Dan</dc:creator>
      <pubDate>Sat, 23 May 2026 13:32:39 +0000</pubDate>
      <link>https://dev.to/expo/how-to-upgrade-to-expo-sdk-56-o3b</link>
      <guid>https://dev.to/expo/how-to-upgrade-to-expo-sdk-56-o3b</guid>
      <description>&lt;p&gt;&lt;em&gt;Originally published on &lt;a href="https://expo.dev/blog/upgrading-to-sdk-56" rel="noopener noreferrer"&gt;expo.dev/blog&lt;/a&gt;&lt;/em&gt;&lt;br&gt;
&lt;em&gt;By Keith Kurak&lt;/em&gt;&lt;/p&gt;



&lt;p&gt;Expo SDK 56 is here, with support for React Native 0.85, and React 19.2. Android API level 36 and Xcode 26.4 and higher are supported. Also unchanged are the minimum supported operating systems: SDK 56 can build apps for Android 7+ and iOS 16.4 and higher. Check out the &lt;a href="https://expo.dev/changelog/sdk-56" rel="noopener noreferrer"&gt;changelog&lt;/a&gt; to get a full picture of all that’s included. And here’s a short highlight video:&lt;/p&gt;

&lt;p&gt;Each SDK undergoes extensive testing and a beta test period, where the Expo team and the community collaborate to find issues that might stand in the way of a fast and smooth upgrade for others. A lot of Expo engineers maintain our own apps and try to upgrade those as soon as the beta is out.&lt;/p&gt;

&lt;p&gt;Nonetheless, there’s practically infinite possibilities out there. Every app is unique, and has its own complexities that will need to be accounted for when upgrading. Therefore, we wanted to highlight some specific key changes that may affect your upgrade to SDK 56, as well as some evergreen advice when it comes to upgrading to the latest Expo SDK.&lt;/p&gt;
&lt;h2&gt;
  
  
  Key things to know as you upgrade to SDK 56
&lt;/h2&gt;
&lt;h3&gt;
  
  
  Power your SDK upgrade with Claude Code
&lt;/h3&gt;

&lt;p&gt;At Expo, we use Claude Code in our day-to-day work. Based on our experiences, we’ve published some skills to help with common tasks within Expo apps in the &lt;a href="https://docs.expo.dev/skills/" rel="noopener noreferrer"&gt;expo/skills library&lt;/a&gt;. One of these skills is for &lt;a href="https://github.com/expo/skills/tree/main/plugins/upgrading-expo" rel="noopener noreferrer"&gt;upgrading to the latest Expo SDK version&lt;/a&gt;. In addition to the basics like updating package versions, it handles things like breaking changes, cleaning up outdated configurations, and more.&lt;/p&gt;

&lt;p&gt;Within Claude Code on your terminal, run&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;/plugin marketplace add expo/skills
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;to add the skills marketplace to Claude, and then&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;/plugin &lt;span class="nb"&gt;install &lt;/span&gt;expo
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;After restarting Claude, you can ask it in plain language to upgrade your SDK. If it’s installed correctly, you should see Claude reference the skill as it gets started:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F787pl6i4faotqt5wmcrv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F787pl6i4faotqt5wmcrv.png" alt="Claude prompt showing usage of Expo upgrade skill" width="658" height="266"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You can also import Expo skills into other agents via&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;bunx skills add expo/skills
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;As always, do your work on a separate branch, and review your code before merge and deploy. LLMs are amazing, but Claude and the Expo upgrade skill can’t be aware of every possible scenario. Human developers are a vital part of this workflow!&lt;/p&gt;

&lt;h3&gt;
  
  
  Faster native builds
&lt;/h3&gt;

&lt;p&gt;To speed up iOS builds, SDK 56 ships &lt;a href="https://docs.expo.dev/guides/prebuilt-expo-modules/" rel="noopener noreferrer"&gt;prebuilt XCFrameworks&lt;/a&gt; for our most complex Expo modules on iOS. This is enabled by default both locally and on EAS Build — no configuration required. To opt out, set the &lt;code&gt;EXPO_USE_PRECOMPILED_MODULES&lt;/code&gt; environment variable to &lt;code&gt;0&lt;/code&gt; (for local builds), and also as an &lt;a href="https://docs.expo.dev/eas/environment-variables/manage/" rel="noopener noreferrer"&gt;EAS environment variable&lt;/a&gt; (for EAS Build).&lt;/p&gt;

&lt;p&gt;For Android, a new opt-in &lt;code&gt;android.usePrecompiledHeaders&lt;/code&gt; option in &lt;code&gt;[expo-build-properties](https://docs.expo.dev/versions/v56.0.0/sdk/build-properties/)&lt;/code&gt; applies CMake precompiled headers to the C++ codegen output for every autolinked native module, dramatically cutting CMake compile times on Android.&lt;/p&gt;

&lt;h3&gt;
  
  
  Expo Go update
&lt;/h3&gt;

&lt;p&gt;Expo Go for SDK 56 is not available on the Apple App Store or Google Play Store. We do not have a timeline for when they will be, and we will update the SDK 56 changelog when we have more news to share. For more information, you can refer to “&lt;a href="https://expo.dev/changelog/expo-go-and-app-store-may-2026" rel="noopener noreferrer"&gt;Expo Go and the App Store in May 2026&lt;/a&gt;.”&lt;/p&gt;

&lt;p&gt;The Expo Go app is our tool for getting started quickly, it's an educational tool to help you learn to build on mobile. We encourage you to take advantage of this transition period to migrate your project to using a &lt;a href="https://docs.expo.dev/develop/development-builds/expo-go-to-dev-build/" rel="noopener noreferrer"&gt;development build&lt;/a&gt;, which provides you with everything that you need to build an app that you ship to stores.&lt;/p&gt;

&lt;p&gt;You can install Expo Go for SDK 56 from Expo CLI directly on Android devices. For iOS, you can use the &lt;a href="https://testflight.apple.com/join/GZJxxfUU" rel="noopener noreferrer"&gt;TestFlight External Beta&lt;/a&gt; or the &lt;code&gt;eas go&lt;/code&gt; command to create an Expo Go build for SDK 56 and upload it to your own TestFlight team.&lt;/p&gt;

&lt;h3&gt;
  
  
  Hermes bytecode diffing for updates is enabled by default
&lt;/h3&gt;

&lt;p&gt;In SDK 55 we &lt;a href="https://expo.dev/changelog/sdk-55#hermes-bytecode-diffing-for-eas-update-and-expo-updates" rel="noopener noreferrer"&gt;introduced opt-in Hermes bytecode diffing&lt;/a&gt; for &lt;code&gt;expo-updates&lt;/code&gt; and &lt;a href="https://expo.dev/services#update" rel="noopener noreferrer"&gt;EAS Update&lt;/a&gt;: instead of downloading a full bundle on every update, the client downloads a binary patch against the previously installed bytecode.&lt;/p&gt;

&lt;p&gt;Diffing is on by default in SDK 56. To opt out, set &lt;code&gt;"enableBsdiffPatchSupport": false&lt;/code&gt; in the &lt;code&gt;updates&lt;/code&gt; block of &lt;strong&gt;app.json&lt;/strong&gt;. &lt;a href="https://docs.expo.dev/versions/v56.0.0/sdk/updates/" rel="noopener noreferrer"&gt;Learn more in the&lt;/a&gt; &lt;code&gt;[expo-updates](https://docs.expo.dev/versions/v56.0.0/sdk/updates/)&lt;/code&gt; &lt;a href="https://docs.expo.dev/versions/v56.0.0/sdk/updates/" rel="noopener noreferrer"&gt;API reference&lt;/a&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Inline Expo Modules
&lt;/h3&gt;

&lt;p&gt;You can now define Expo modules directly within your project structure, alongside your JavaScript and TypeScript code. We call these inline modules, and they make experimenting with native code easier than ever. You can develop inline modules from Android Studio, Xcode, or any other IDE as they are part of your project structure. Check out the inline modules &lt;a href="https://docs.expo.dev/modules/inline-modules-reference/" rel="noopener noreferrer"&gt;reference&lt;/a&gt; and the &lt;a href="https://docs.expo.dev/modules/inline-modules-tutorial/" rel="noopener noreferrer"&gt;tutorial&lt;/a&gt; for more information.&lt;/p&gt;

&lt;h2&gt;
  
  
  Tips for upgrading your Expo SDK
&lt;/h2&gt;

&lt;p&gt;We have written up &lt;a href="https://github.com/expo/fyi/blob/main/troubleshooting-sdk-upgrades.md" rel="noopener noreferrer"&gt;detailed advice for troubleshooting issues found during an upgrade&lt;/a&gt;. This includes considerations for both before and during your upgrade, with a list of suggestions, starting with the quickest/easiest to try. We recommend reading the entire guide, but we wanted to highlight a few key items in brief here:&lt;/p&gt;

&lt;h3&gt;
  
  
  Use the upgrade skill!
&lt;/h3&gt;

&lt;p&gt;It’s so nice, we’ll say it twice: Add the &lt;a href="https://docs.expo.dev/skills/" rel="noopener noreferrer"&gt;expo/skills library&lt;/a&gt; to your preferred LLM and let it do the upgrade for you.&lt;/p&gt;

&lt;h3&gt;
  
  
  Troubleshoot with Expo MCP
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://docs.expo.dev/eas/ai/mcp" rel="noopener noreferrer"&gt;Expo MCP&lt;/a&gt; now includes more tools to help you troubleshoot your upgrade alongside Claude Code, Codex, Cursor, and others. If one of your EAS builds fails, use the &lt;code&gt;build_logs&lt;/code&gt; tool to pull down the build logs for analysis with AI. If you install the &lt;code&gt;expo-mcp&lt;/code&gt; package, you can use the &lt;code&gt;collect_app_logs&lt;/code&gt; tool to pull native logcat / macOS console logs from your emulator/simulator.&lt;/p&gt;

&lt;h3&gt;
  
  
  Check the changelog
&lt;/h3&gt;

&lt;p&gt;Most SDK releases will have a list of known breaking changes, or notable changes where you may need to tweak configuration for a scenario specific to your app. The best time to read the &lt;a href="https://expo.dev/changelog/sdk-56" rel="noopener noreferrer"&gt;changelog&lt;/a&gt; and breaking changes is before you upgrade, so you can make those tweaks before you test, but the next best time to read it is after you upgrade, particularly if you see a compilation error or crash.&lt;/p&gt;

&lt;h3&gt;
  
  
  Using development builds over Expo Go
&lt;/h3&gt;

&lt;p&gt;Upgrades are best taken when you don’t feel rushed to complete them. As Expo Go automatically upgraded to the latest version after the SDK release on your phone, you may have noticed that your app no longer worked in Expo Go, and felt that you needed to upgrade right away in order to keep working on features.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://docs.expo.dev/develop/development-builds/introduction/" rel="noopener noreferrer"&gt;Development builds&lt;/a&gt; help reduce the temperature, giving you time and space to take on an upgrade while not interrupting ongoing feature work. A development build works a lot like Expo Go, allowing you to scan a QR code to work on your code locally without rebuilding. But it’s your own app, so it will not get upgraded when a new version of Expo Go is released.&lt;/p&gt;

&lt;p&gt;If you still feel that you need to use Expo Go, know that you don’t necessarily have to use the latest version on the Play and App Stores. You can go to &lt;a href="https://expo.dev/go" rel="noopener noreferrer"&gt;https://expo.dev/go&lt;/a&gt; and download previous versions for use on Android devices and iOS simulators. Unfortunately, due to App Store restrictions, this does not work on iOS devices.&lt;/p&gt;

&lt;p&gt;Still, another &lt;a href="https://expo.dev/blog/expo-go-vs-development-builds" rel="noopener noreferrer"&gt;reason to migrate to a development build&lt;/a&gt; is because Expo Go is quite limited in how it can replicate your production app, leading to issues where it works in Expo Go but not when you build your production app. Expo Go can run your JavaScript, but it cannot apply most of your app.json / app.config.js configuration, because that would require modifying native code. In short, Expo Go can’t contain nearly everything that’s unique and special about your app. Development builds can. There's plenty of headroom in the &lt;a href="https://expo.dev/pricing" rel="noopener noreferrer"&gt;Free plan&lt;/a&gt; to make some development builds, or you can build locally &lt;code&gt;npx expo run:android&lt;/code&gt; or &lt;code&gt;npx expo run:ios&lt;/code&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  New Architecture advice
&lt;/h3&gt;

&lt;p&gt;Expo SDK 54 was the last SDK to support the Old Architecture. SDK 55+ / React Native 0.83+ only support New Architecture. Therefore, if you haven’t upgraded to the New Architecture yet, now is definitely the time! A number of the latest versions of major packages, such as &lt;code&gt;react-native-reanimated&lt;/code&gt; v4 and &lt;code&gt;@shopify/flash-list&lt;/code&gt; v4, only support New Architecture.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Avoid upgrading both your Expo SDK and adopting New Architecture at the same time.&lt;/strong&gt; This makes it more difficult to isolate any issues. Compared to upgrading your Expo SDK, adopting New Architecture is the bigger change, so any issues are likely related to that- but it will be hard to tell if you upgrade to both at the same time.&lt;/p&gt;

&lt;p&gt;We recommend first &lt;a href="https://docs.expo.dev/guides/new-architecture/#enable-the-new-architecture-in-an-existing-project" rel="noopener noreferrer"&gt;upgrading to the New Architecture&lt;/a&gt; on SDK 54 and then creating a development build. Test that, using our &lt;a href="https://docs.expo.dev/guides/new-architecture/#troubleshooting" rel="noopener noreferrer"&gt;New Architecture troubleshooting guide to help&lt;/a&gt; if you run into any issues. After you’ve verified things are working just by upgrading to New Architecture, upgrade to SDK 56 and make a new development build. Now, you’ll just be testing your SDK 56 upgrade in isolation.&lt;/p&gt;

&lt;h3&gt;
  
  
  Check the troubleshooting guides
&lt;/h3&gt;

&lt;p&gt;We have a landing page of our &lt;a href="https://docs.expo.dev/troubleshooting/overview/" rel="noopener noreferrer"&gt;most popular troubleshooting guides&lt;/a&gt; that you can browse depending on your issue. If your issue is an error when building, you’ll want to take different steps compared to a crash or performance issue. Even if you don’t fully get to the root cause, &lt;a href="https://docs.expo.dev/debugging/runtime-issues/#production-app-is-crashing" rel="noopener noreferrer"&gt;using a tool like ADB Logcat or macOS console&lt;/a&gt; to find a native error that the operating system reports from a crash can be very helpful as you engage in further troubleshooting or ask others for help.&lt;/p&gt;

&lt;h3&gt;
  
  
  Reach out if you need a hand!
&lt;/h3&gt;

&lt;p&gt;We appreciate your bug reports and feedback! The best way to surface an issue is and will always be a Github issue with a &lt;strong&gt;minimal reproduction&lt;/strong&gt;, where you send us a link to a Github repo based on the default project template created with &lt;code&gt;npx create-expo-app&lt;/code&gt; , plus just enough code to reproduce the issue.&lt;/p&gt;

&lt;p&gt;A minimal reproduction ensures that our team can see exactly what you’re seeing and gives us a way to test that our fix will work for you. Even if that seems like a lot to do, often spending 15 or 30 minutes trying to make a minimal reproduction is more effective than hours spent debugging on your actual app, where there are a lot of moving pieces and it’s more difficult to isolate issues. AI tools like Claude can even help make the minimal reproduction for you.&lt;/p&gt;

&lt;p&gt;We also understand the value in discussing an issue in the moment, even before you’re ready to try to reproduce it. Other developers may be experiencing the same thing and already have an answer. Discussions about issues on &lt;a href="https://discord.com/invite/expo" rel="noopener noreferrer"&gt;Discord&lt;/a&gt;, &lt;a href="https://www.reddit.com/r/expo/" rel="noopener noreferrer"&gt;Reddit&lt;/a&gt;, &lt;a href="https://bsky.app/profile/expo.dev" rel="noopener noreferrer"&gt;Bluesky&lt;/a&gt; and elsewhere can result in a sort of &lt;a href="https://en.wikipedia.org/wiki/Rubber_duck_debugging" rel="noopener noreferrer"&gt;collaborative virtual rubberducking&lt;/a&gt; where we find the answer together while talking through it.&lt;/p&gt;

&lt;p&gt;We encourage you to post screenshots or videos of the issues you’re facing, or at least descriptions of what exactly you’re seeing, what platforms are affected, etc. so we can see what is broken and help the community think through how to isolate that issue and find a solution. If you have detailed feedback about the upgrade process that doesn’t fit neatly into a minimal reproduction of a single issue, we’d love to hear about it, as well. Besides social forums, we always have someone checking on the messages received from our &lt;a href="https://expo.dev/support" rel="noopener noreferrer"&gt;support page&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Happy upgrading and we hope you love SDK 56!&lt;/p&gt;

</description>
      <category>expo</category>
      <category>mobile</category>
    </item>
    <item>
      <title>Expo SDK 56</title>
      <dc:creator>Dan</dc:creator>
      <pubDate>Thu, 21 May 2026 18:21:13 +0000</pubDate>
      <link>https://dev.to/expo/expo-sdk-56-5eb5</link>
      <guid>https://dev.to/expo/expo-sdk-56-5eb5</guid>
      <description>&lt;p&gt;&lt;em&gt;Originally published on &lt;a href="https://expo.dev/changelog/sdk-56" rel="noopener noreferrer"&gt;expo.dev/changelog&lt;/a&gt;&lt;/em&gt;&lt;br&gt;
&lt;em&gt;By Alan Hughes, Brent Vatne&lt;/em&gt;&lt;/p&gt;



&lt;p&gt;Today we're announcing the release of Expo SDK 56. SDK 56 includes &lt;a href="https://reactnative.dev/blog/2026/04/07/react-native-0.85" rel="noopener noreferrer"&gt;React Native 0.85&lt;/a&gt; and &lt;a href="https://react.dev/blog/2025/10/01/react-19-2" rel="noopener noreferrer"&gt;React 19.2&lt;/a&gt;. Thank you to everyone who helped with beta testing.&lt;/p&gt;
&lt;h2&gt;
  
  
  &lt;strong&gt;Expo UI is now ready for production&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;As of SDK 56, the Jetpack Compose (Android) and SwiftUI (iOS) APIs in Expo UI are stable. We've added Expo UI to the default &lt;code&gt;[create-expo-app](https://docs.expo.dev/more/create-expo/)&lt;/code&gt; template, so new Expo apps can use a rich set of native UI primitives right out of the box, and Expo UI is now available in Expo Go.&lt;/p&gt;

&lt;p&gt;This milestone release builds on three SDK cycles of iteration across SDK 53, 54, and 55. Thank you to everyone on the Expo team and in the community who helped test, audit, and refine the APIs from the original SwiftUI prototype to the Jetpack Compose implementation.&lt;/p&gt;

&lt;p&gt;SDK 56 focuses on three core pieces of Expo UI: a new universal components API for shared interfaces, stable native APIs, and drop-in replacements for popular React Native community libraries.&lt;/p&gt;
&lt;h3&gt;
  
  
  Universal components
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpewn43oalht3otvajwdd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpewn43oalht3otvajwdd.png" alt="Universal field group settings UI" width="800" height="431"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Expo UI now includes universal components that work across Android, iOS, and web. Unlike the Android and iOS APIs, the web APIs are still experimental and likely to change.&lt;/p&gt;

&lt;p&gt;The universal components are backed by &lt;code&gt;[@expo/ui/jetpack-compose](https://docs.expo.dev/versions/v56.0.0/sdk/ui/jetpack-compose/)&lt;/code&gt; on Android, &lt;code&gt;[@expo/ui/swift-ui](https://docs.expo.dev/versions/v56.0.0/sdk/ui/swift-ui/)&lt;/code&gt; on iOS, and &lt;code&gt;react-dom&lt;/code&gt; or &lt;code&gt;react-native-web&lt;/code&gt; on web. You can now build more cross-platform UI with Expo UI without splitting files into &lt;code&gt;.android.tsx&lt;/code&gt; and &lt;code&gt;.ios.tsx&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Universal components include layout primitives, text, inputs, controls, and sheets such as &lt;code&gt;Host&lt;/code&gt;, &lt;code&gt;Row&lt;/code&gt;, &lt;code&gt;Column&lt;/code&gt;, &lt;code&gt;ScrollView&lt;/code&gt;, &lt;code&gt;Text&lt;/code&gt;, &lt;code&gt;TextInput&lt;/code&gt;, &lt;code&gt;Button&lt;/code&gt;, &lt;code&gt;Switch&lt;/code&gt;, &lt;code&gt;Slider&lt;/code&gt;, &lt;code&gt;Checkbox&lt;/code&gt;, and &lt;code&gt;BottomSheet&lt;/code&gt;. &lt;a href="https://docs.expo.dev/versions/v56.0.0/sdk/ui/universal/" rel="noopener noreferrer"&gt;Learn more&lt;/a&gt;.&lt;/p&gt;
&lt;h3&gt;
  
  
  Stable native APIs
&lt;/h3&gt;

&lt;p&gt;Expo UI's SwiftUI and Jetpack Compose APIs are now stable after several rounds of breaking changes. These changes align Expo UI more closely with the underlying frameworks, so developers and coding agents can lean on native platform documentation and examples directly when writing Expo UI code.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Extend Expo UI with custom views and modifiers&lt;/strong&gt;: you can now extend Expo UI with your own SwiftUI and Jetpack Compose views and modifiers. Expo UI manages layout synchronization, props, and events for you. See the guides for examples: &lt;a href="https://docs.expo.dev/guides/expo-ui-swift-ui/extending/" rel="noopener noreferrer"&gt;SwiftUI guide&lt;/a&gt; and &lt;a href="https://docs.expo.dev/guides/expo-ui-jetpack-compose/extending/" rel="noopener noreferrer"&gt;Compose guide&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Material 3 Dynamic Colors and the Material Symbols catalog&lt;/strong&gt;: the new &lt;code&gt;[useMaterialColors](https://docs.expo.dev/versions/v56.0.0/sdk/ui/jetpack-compose/colors/)&lt;/code&gt; hook hands you Material 3 Dynamic Colors that follow the system theme, and the &lt;code&gt;[Icon](https://docs.expo.dev/versions/v56.0.0/sdk/ui/jetpack-compose/icon/)&lt;/code&gt; component pairs with &lt;code&gt;[@expo/material-symbols](https://www.npmjs.com/package/@expo/material-symbols)&lt;/code&gt; to bring the full Material Symbols catalog within import reach.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;**react-native-worklets**&lt;/code&gt;** integration and native state**: Expo UI now integrates with &lt;code&gt;react-native-worklets&lt;/code&gt; and native state primitives from the underlying UI frameworks: &lt;code&gt;[ObservableObject](https://developer.apple.com/documentation/combine/observableobject)&lt;/code&gt; on SwiftUI and &lt;code&gt;[MutableState](https://developer.android.com/reference/kotlin/androidx/compose/runtime/MutableState)&lt;/code&gt; on Jetpack Compose. The new &lt;code&gt;useNativeState&lt;/code&gt; hook lets JavaScript control that native state directly, which is useful for native state-driven animations and form controls. Learn more about &lt;code&gt;useNativeState&lt;/code&gt; for &lt;a href="https://docs.expo.dev/versions/v56.0.0/sdk/ui/swift-ui/usenativestate/" rel="noopener noreferrer"&gt;SwiftUI&lt;/a&gt; and &lt;a href="https://docs.expo.dev/versions/v56.0.0/sdk/ui/jetpack-compose/usenativestate/" rel="noopener noreferrer"&gt;Jetpack Compose&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Synchronous worklet callbacks&lt;/strong&gt;: a new &lt;code&gt;WorkletCallback&lt;/code&gt; shared object allows synchronous UI worklet callbacks to be passed as props to Expo UI views on both platforms. &lt;code&gt;TextField&lt;/code&gt; on iOS and Compose can now use native state for &lt;code&gt;value&lt;/code&gt;, and &lt;code&gt;onValueChange&lt;/code&gt; accepts &lt;code&gt;WorkletCallback&lt;/code&gt;, enabling synchronous, flicker-free controlled text inputs.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Components, modifiers, and API changes&lt;/strong&gt;: SDK 56 lands the bulk of the stabilization work since SDK 55. See the &lt;code&gt;[@expo/ui](https://github.com/expo/expo/blob/main/packages/expo-ui/CHANGELOG.md)&lt;/code&gt;&lt;a href="https://github.com/expo/expo/blob/main/packages/expo-ui/CHANGELOG.md" rel="noopener noreferrer"&gt; CHANGELOG&lt;/a&gt; for the full list.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
  
  
  Drop-in replacements for community components
&lt;/h3&gt;

&lt;p&gt;Expo UI is focused on native primitives, and some of those primitives overlap with popular community libraries. To make migration easier and reduce library fragmentation, SDK 56 introduces drop-in replacements for several common community components.&lt;/p&gt;

&lt;p&gt;For example, you can migrate from:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tsx"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="nx"&gt;DateTimePicker&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;@react-native-community/datetimepicker&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;to:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tsx"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="nx"&gt;DateTimePicker&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;@expo/ui/community/datetime-picker&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Drop-in replacements are available for &lt;code&gt;@react-native-segmented-control/segmented-control&lt;/code&gt;, &lt;code&gt;@react-native-picker/picker&lt;/code&gt;, &lt;code&gt;@react-native-community/datetimepicker&lt;/code&gt;, &lt;code&gt;@react-native-masked-view/masked-view&lt;/code&gt;, and &lt;code&gt;@gorhom/bottom-sheet&lt;/code&gt; APIs. Most migrations only require changing the import, though some props may differ because Expo UI is backed by SwiftUI and Jetpack Compose rather than UIKit and Android Views. &lt;a href="https://docs.expo.dev/versions/v56.0.0/sdk/ui/drop-in-replacements/" rel="noopener noreferrer"&gt;Learn more&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Faster native builds&lt;/strong&gt;
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Precompiled Expo packages on iOS
&lt;/h3&gt;

&lt;p&gt;SDK 56 ships &lt;a href="https://docs.expo.dev/guides/prebuilt-expo-modules/" rel="noopener noreferrer"&gt;prebuilt XCFrameworks&lt;/a&gt; for our most complex Expo modules on iOS, to speed up your iOS builds. In our measurements, this cuts median clean iOS build times by around 1 minute (~16%) â€” both locally and on EAS Build. This is enabled by default both locally and on EAS Build â€” no configuration required. To opt out, set the &lt;code&gt;EXPO_USE_PRECOMPILED_MODULES&lt;/code&gt; environment variable to &lt;code&gt;0&lt;/code&gt; (for local builds), and also as an &lt;a href="https://docs.expo.dev/eas/environment-variables/manage/" rel="noopener noreferrer"&gt;EAS environment variable&lt;/a&gt; (for EAS Build).&lt;/p&gt;

&lt;h3&gt;
  
  
  Precompiled headers for Android codegen (experimental)
&lt;/h3&gt;

&lt;p&gt;A new opt-in &lt;code&gt;android.usePrecompiledHeaders&lt;/code&gt; option in &lt;code&gt;[expo-build-properties](https://docs.expo.dev/versions/v56.0.0/sdk/build-properties/)&lt;/code&gt; applies CMake precompiled headers to the C++ codegen output for every autolinked native module, dramatically cutting CMake compile times on Android. In our benchmarks, the &lt;code&gt;:app:buildCMakeDebug&lt;/code&gt; task dropped from 17m 10s to 6m 06s â€” a 2.81x speedup. In a default new project, builds are about 1.3x faster. Results will vary by project, but the larger your autolinked module graph, the bigger the win.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4sni6r1lmfmgxw3v379o.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4sni6r1lmfmgxw3v379o.png" alt="Android codegen compilation cut by nearly two thirds: :app:buildCMakeDebug went from 17m 10.724s to 6m 06.692s, a 2.81x speedup and 11m 04s saved" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Enable it in &lt;strong&gt;app.json&lt;/strong&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="err"&gt;//&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;app.json&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"plugins"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"expo-build-properties"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"android"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"usePrecompiledHeaders"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;}]&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This feature is experimental in SDK 56 while we gather feedback, and we're working on upstreaming it to React Native so every app benefits from faster Android builds. &lt;a href="https://github.com/expo/expo/pull/45922" rel="noopener noreferrer"&gt;Learn more in the PR&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Expo Modules: easier to write, faster to run&lt;/strong&gt;
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Inline modules
&lt;/h3&gt;

&lt;p&gt;Starting with SDK 56, you can now define Expo modules directly within your project structure, alongside your JavaScript and TypeScript code. We call these inline modules, and they make experimenting with native code easier than ever.&lt;/p&gt;

&lt;p&gt;After setting up your app to use inline modules, you can open Kotlin and Swift files and write your Expo modules with no additional setup. During prebuild, the iOS Xcode project is updated and the necessary options are set in the Android project, which lets us add inline modules to the build and autolink them automatically.&lt;/p&gt;

&lt;p&gt;With the newly released type generation tools, which offer a few CLI commands tailored towards inline modules, you will have an even smoother experience. You can just create a Swift inline module and a CLI watcher will automatically generate a TypeScript interface for it right beside the Swift file. The TypeScript interface is separated into a generated and stable part, so that you have control over your stable TS interface and leave the generated part to be regenerated on any changes. If you want more control you can always generate these files manually.&lt;/p&gt;

&lt;p&gt;You can develop inline modules from Android Studio, Xcode, or any other IDE as they are part of your project structure.&lt;/p&gt;

&lt;p&gt;Check out the inline modules &lt;a href="https://docs.expo.dev/modules/inline-modules-reference/" rel="noopener noreferrer"&gt;reference&lt;/a&gt; and the &lt;a href="https://docs.expo.dev/modules/inline-modules-tutorial/" rel="noopener noreferrer"&gt;tutorial&lt;/a&gt; for more information!&lt;/p&gt;

&lt;h3&gt;
  
  
  Type generation tools
&lt;/h3&gt;

&lt;p&gt;In SDK 56 we introduce a powerful new tool for developing Expo Modules. The new &lt;code&gt;expo-type-information&lt;/code&gt; package exports functions that parse and retrieve type information from a Swift Expo module and ones that generate TypeScript interface from the retrieved information.&lt;/p&gt;

&lt;p&gt;It also includes a CLI with the following key commands:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;module-interface&lt;/code&gt;: takes a Swift Expo module (accepting multiple file paths or a path to the module root) and generates multiple TypeScript files based on our standard interface scheme:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;[ModuleName]Types.ts&lt;/strong&gt;: contains all type declarations.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;[ModuleName]Module.ts&lt;/strong&gt;: contains the module class.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;[ModuleName]View.tsx&lt;/strong&gt;: exports the default view component(s) with typed props.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;index.ts&lt;/strong&gt;: re-exports the module alongside every defined type and view.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;&lt;p&gt;&lt;code&gt;inline-modules-interface&lt;/code&gt;: generates a pair of TypeScript files (&lt;strong&gt;generated&lt;/strong&gt;, &lt;strong&gt;stable&lt;/strong&gt;) for each Swift inline module in a project.&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;&lt;code&gt;short-module-interface&lt;/code&gt;: works similarly to &lt;code&gt;inline-modules-interface&lt;/code&gt;, but targets a specific Swift module instead of all inline modules in the project.&lt;/p&gt;&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;All of these commands can be run in a watch mode to automatically regenerate the TypeScript interfaces.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://docs.expo.dev/modules/type-generation-reference/" rel="noopener noreferrer"&gt;Learn more in the &lt;/a&gt;&lt;code&gt;[expo-type-information](https://docs.expo.dev/modules/type-generation-reference/)&lt;/code&gt;&lt;a href="https://docs.expo.dev/modules/type-generation-reference/" rel="noopener noreferrer"&gt; reference&lt;/a&gt; and &lt;a href="https://docs.expo.dev/modules/type-generation-tutorial/" rel="noopener noreferrer"&gt;tutorial&lt;/a&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Revamped &lt;code&gt;create-expo-module&lt;/code&gt;
&lt;/h3&gt;

&lt;p&gt;In SDK 56, &lt;code&gt;[create-expo-module](https://docs.expo.dev/more/create-expo-module/)&lt;/code&gt; has been revamped for improved stability and a richer feature-set.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;New **`&lt;/strong&gt;create-expo-module*&lt;em&gt;`&lt;/em&gt;* skill**: helps agents create Expo modules â€” &lt;a href="https://github.com/expo/skills/pull/49" rel="noopener noreferrer"&gt;coming soon&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;New **`&lt;/strong&gt;addPlatformSupport*&lt;em&gt;`&lt;/em&gt;* subcommand**: adds support for additional platforms in an existing module â€” for example, adding Android support to an iOS-only module. The command detects the features currently used in your module and scaffolds the native files for you.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Modular template&lt;/strong&gt;: when creating a module you can pick which features get scaffolded and which platforms it targets.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Non-interactive mode support&lt;/strong&gt;: field defaults have been improved and some fields are no longer required; in non-interactive mode, &lt;code&gt;create-expo-module&lt;/code&gt; logs the defaults that were used.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;No barrel file by default&lt;/strong&gt;: local modules no longer use &lt;code&gt;index.ts&lt;/code&gt;; pass &lt;code&gt;--barrel&lt;/code&gt; to opt in.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Windows support&lt;/strong&gt;: &lt;code&gt;create-expo-module&lt;/code&gt; now works well on Windows.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Runtime performance improvements in &lt;code&gt;expo-modules-core&lt;/code&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Kotlin compiler plugin&lt;/strong&gt; â€” A new Kotlin compiler plugin replaces reflection with build-time code generation for Expo Modules on Android. &lt;a href="https://x.com/lkosmaty/status/2051693879770964433" rel="noopener noreferrer"&gt;In our benchmarks&lt;/a&gt;, we're seeing roughly 40% faster cold starts and 33% faster first render, with no app-side changes required. By collecting module metadata at compile time rather than runtime, we eliminate the reflection-based function-type-to-converter mapping that has historically been a major speed bump for Expo Modules on Android. Results will vary by project, but this is only the beginning â€” this compiler-driven approach lets us optimize function invocation directly, starting with a noticeable speed boost for Record conversion in SDK 56.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcscc29p87q4mnewi2d05.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcscc29p87q4mnewi2d05.png" alt="Activity.onCreate is 1.7x faster (55 ms vs 93 ms on SDK 55), and Time to Interactive is 1.5x faster (531 ms vs 797 ms on SDK 55)" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;New JSI layer for iOS native modules&lt;/strong&gt; â€” Until now, calling into a native module from JavaScript on iOS meant crossing three language boundaries: Swift, Objective-C++, and C++. In SDK 56 we removed the Objective-C++ middle layer entirely by adopting Swift/C++ interop to talk to JSI directly. Fewer hops means less call overhead, and in our benchmarks we're seeing significant performance improvements across native module calls. The codebase is also significantly easier to work with now that it is Swift all the way down. We'll cover the architecture, benchmarks, and what this enables in an in-depth blog post.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;React Native 0.85 and React 19.2&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Expo SDK 55 included React Native 0.83, so be sure to refer to the full release notes for &lt;a href="https://reactnative.dev/blog/2026/02/11/react-native-0.84" rel="noopener noreferrer"&gt;0.84&lt;/a&gt; and &lt;a href="https://reactnative.dev/blog/2026/04/07/react-native-0.85" rel="noopener noreferrer"&gt;0.85&lt;/a&gt; for the complete picture. A few highlights include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Hermes v1 by default&lt;/strong&gt;: Hermes v1 is now the default JavaScript engine, bringing faster startup times, improved runtime performance, and reduced memory usage. You can opt out with the &lt;code&gt;[useHermesV1](https://docs.expo.dev/versions/v56.0.0/sdk/build-properties/#sharedbuildconfigfields)&lt;/code&gt; configuration in &lt;code&gt;[expo-build-properties](https://docs.expo.dev/versions/v56.0.0/sdk/build-properties/)&lt;/code&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;New animation backend&lt;/strong&gt;: React Native 0.85 introduces a new animation backend designed to better align with the New Architecture, improving consistency and performance of animations across platforms.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;HTTPS dev server&lt;/strong&gt;: the Metro dev server now supports HTTPS via TLS configuration, enabling secure local development environments and compatibility with APIs that require secure origins.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Node.js minimum bump&lt;/strong&gt;: React Native 0.85 drops support for Node.js versions before v20.19.4.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Hermes bytecode diffing is now enabled by default&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;In SDK 55 we &lt;a href="https://expo.dev/changelog/sdk-55#hermes-bytecode-diffing-for-eas-update-and-expo-updates" rel="noopener noreferrer"&gt;introduced opt-in Hermes bytecode diffing&lt;/a&gt; for &lt;code&gt;expo-updates&lt;/code&gt; and &lt;a href="https://expo.dev/services#update" rel="noopener noreferrer"&gt;EAS Update&lt;/a&gt;: instead of downloading a full bundle on every update, the client downloads a binary patch against the previously installed bytecode. In the 24 hours before this post went out, EAS Update served diffed Hermes bundles that were on average &lt;strong&gt;58% smaller&lt;/strong&gt; than the full bundle they replaced.&lt;/p&gt;

&lt;p&gt;Diffing is on by default in SDK 56. To opt out, set &lt;code&gt;"enableBsdiffPatchSupport": false&lt;/code&gt; in the &lt;code&gt;updates&lt;/code&gt; block of &lt;strong&gt;app.json&lt;/strong&gt;. &lt;a href="https://docs.expo.dev/versions/v56.0.0/sdk/updates/" rel="noopener noreferrer"&gt;Learn more in the &lt;/a&gt;&lt;code&gt;[expo-updates](https://docs.expo.dev/versions/v56.0.0/sdk/updates/)&lt;/code&gt;&lt;a href="https://docs.expo.dev/versions/v56.0.0/sdk/updates/" rel="noopener noreferrer"&gt; API reference&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;We're also working on extending bytecode diffing to patch against the &lt;strong&gt;embedded bundle shipped in your native build&lt;/strong&gt;, not just against the previously installed update. This will give the first update after a fresh install the same size savings that subsequent updates already see. We're planning to ship this as an opt-in feature in an SDK 56 patch release in the coming months.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;More capable **`&lt;/strong&gt;expo-file-system**`
&lt;/h2&gt;

&lt;p&gt;SDK 56 fills several parity gaps in the new &lt;code&gt;[expo-file-system](https://docs.expo.dev/versions/v56.0.0/sdk/filesystem/)&lt;/code&gt; API that became the default in SDK 54. &lt;code&gt;File.downloadFileAsync()&lt;/code&gt; now reports progress and supports &lt;code&gt;AbortSignal&lt;/code&gt;, and copy/move operations accept an &lt;code&gt;overwrite&lt;/code&gt; option.&lt;/p&gt;

&lt;p&gt;The new API also adds task-based upload and download APIs: &lt;code&gt;file.createUploadTask()&lt;/code&gt; and &lt;code&gt;File.createDownloadTask()&lt;/code&gt;. These bring back support for long-running transfers from the legacy file-system module, including upload progress, cancellation, and resumable downloads. For simpler uploads, &lt;code&gt;File.upload()&lt;/code&gt; provides a convenience wrapper when you do not need to manage an upload task directly.&lt;/p&gt;

&lt;p&gt;File picking is more capable now too: &lt;code&gt;File.pickFileAsync()&lt;/code&gt; supports selecting multiple files and multiple MIME types, bringing it closer to &lt;code&gt;[expo-document-picker](https://docs.expo.dev/versions/v56.0.0/sdk/document-picker/)&lt;/code&gt; feature parity. We also fixed several correctness and reliability issues, including large-file &lt;code&gt;md5&lt;/code&gt; hashing memory usage, Android SAF copy/move support, and &lt;code&gt;totalDiskSpace&lt;/code&gt; reporting on iOS.&lt;/p&gt;

&lt;p&gt;We've also added experimental file-system event watching with &lt;code&gt;File.watch()&lt;/code&gt; and &lt;code&gt;Directory.watch()&lt;/code&gt;, which will let apps subscribe to file and directory changes without polling.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Status bar and navigation bar APIs are now consistent&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Both &lt;code&gt;[expo-status-bar](https://docs.expo.dev/versions/v56.0.0/sdk/status-bar/)&lt;/code&gt; and &lt;code&gt;[expo-navigation-bar](https://docs.expo.dev/versions/v56.0.0/sdk/navigation-bar/)&lt;/code&gt; now expose a React component with the same prop surface, where multiple instances merge in mount order. To make that possible, we added a new &lt;code&gt;&amp;lt;NavigationBar&amp;gt;&lt;/code&gt; component:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tsx"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;StatusBar&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;expo-status-bar&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;NavigationBar&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;expo-navigation-bar&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;App&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nf"&gt;useEffect&lt;/span&gt;&lt;span class="p"&gt;(()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="c1"&gt;// Imperative API&lt;/span&gt;
    &lt;span class="nx"&gt;StatusBar&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;setStyle&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;auto&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
    &lt;span class="nx"&gt;StatusBar&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;setHidden&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="kc"&gt;false&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;

    &lt;span class="nx"&gt;NavigationBar&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;setStyle&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;auto&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
    &lt;span class="nx"&gt;NavigationBar&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;setHidden&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="kc"&gt;false&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
  &lt;span class="p"&gt;},&lt;/span&gt; &lt;span class="p"&gt;[]);&lt;/span&gt;

  &lt;span class="k"&gt;return &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
    &lt;span class="p"&gt;&amp;lt;&amp;gt;&lt;/span&gt;
      &lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="cm"&gt;/* Declarative API: equivalent to the imperative calls above, with multiple instances merging in mount order */&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;
      &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nc"&gt;StatusBar&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;"auto"&lt;/span&gt; &lt;span class="na"&gt;hidden&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="kc"&gt;false&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt; &lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
      &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nc"&gt;NavigationBar&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;"auto"&lt;/span&gt; &lt;span class="na"&gt;hidden&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="kc"&gt;false&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt; &lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
    &lt;span class="p"&gt;&amp;lt;/&amp;gt;&lt;/span&gt;
  &lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;We also added a config plugin for &lt;code&gt;expo-status-bar&lt;/code&gt;, and both packages' plugin options now align:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="err"&gt;//&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;app.json&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"plugins"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"expo-status-bar"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"style"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"light"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"hidden"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;false&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;}],&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"expo-navigation-bar"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"style"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"light"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"hidden"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;false&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;}]&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  &lt;strong&gt;New Calendar, Contacts, and MediaLibrary APIs are now stable&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;With the release of Expo SDK 56, the next versions of the &lt;code&gt;[expo-calendar](https://docs.expo.dev/versions/v56.0.0/sdk/calendar/)&lt;/code&gt;, &lt;code&gt;[expo-media-library](https://docs.expo.dev/versions/v56.0.0/sdk/media-library/)&lt;/code&gt;, and &lt;code&gt;[expo-contacts](https://docs.expo.dev/versions/v56.0.0/sdk/contacts/)&lt;/code&gt; libraries are officially promoted to stable.&lt;/p&gt;

&lt;p&gt;The updated APIs have been redesigned with an object-oriented approach. Items like media assets or individual contacts are now represented as classes, which unlocks new features and makes them much easier to work with. Key improvements include granular data fetching (instead of loading entire, heavy objects at once, you can now fetch the specific properties you need) and cleaner querying and filtering using the Builder pattern.&lt;/p&gt;

&lt;p&gt;For more technical details and usage examples on the new MediaLibrary and Contacts APIs, check out &lt;a href="https://expo.dev/blog/the-next-generation-of-expo-apis-medialibrary-and-contacts" rel="noopener noreferrer"&gt;the blog post&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Widgets for iOS promoted to stable&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;After introducing an alpha version of &lt;a href="https://docs.expo.dev/versions/v56.0.0/sdk/widgets/" rel="noopener noreferrer"&gt;Expo Widgets&lt;/a&gt; for iOS in SDK 55, we gathered feedback and made many fixes and improvements, and the library is now stable. In SDK 56, Widgets and Live Activities have full access to the environment and no longer need to be pre-rendered. We also improved timeline management, error handling, the config plugin, and the render timeline.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;AI-friendly project scaffolding&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Agent-ready scaffolding&lt;/strong&gt;: new projects include &lt;strong&gt;AGENTS.md&lt;/strong&gt;, &lt;strong&gt;CLAUDE.md&lt;/strong&gt;, and &lt;code&gt;.claude/settings.json&lt;/code&gt; with Expo-specific guidance.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Official &lt;strong&gt;[&lt;/strong&gt;Expo Skills**](&lt;a href="https://docs.expo.dev/skills/" rel="noopener noreferrer"&gt;https://docs.expo.dev/skills/&lt;/a&gt;)&lt;/strong&gt; for AI agents**: install in Claude Code with &lt;code&gt;/plugin marketplace add expo/skills&lt;/code&gt; followed by &lt;code&gt;/plugin install expo&lt;/code&gt;. For Codex, Cursor, or any other agent, run &lt;code&gt;npx skills add expo/skills&lt;/code&gt;. See the docs for per-tool setup details.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Convex integration&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;EAS now provisions and links &lt;a href="https://www.convex.dev/" rel="noopener noreferrer"&gt;Convex&lt;/a&gt; backends for you. Run &lt;code&gt;eas integrations:convex:connect&lt;/code&gt; in your project and we'll install &lt;code&gt;convex&lt;/code&gt;, create (or reuse) a Convex team linked to your EAS account, set up a project with a dev deployment, and write &lt;code&gt;CONVEX_DEPLOY_KEY&lt;/code&gt; and &lt;code&gt;EXPO_PUBLIC_CONVEX_URL&lt;/code&gt; to your &lt;strong&gt;.env.local&lt;/strong&gt;. We also create &lt;code&gt;EXPO_PUBLIC_CONVEX_URL&lt;/code&gt; as an EAS environment variable across Production, Preview, and Development so EAS Build picks it up automatically.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Expo CLI&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgfqlkuuk4jc5jjzpsfyo.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgfqlkuuk4jc5jjzpsfyo.png" alt="expo start is 5x faster, Metro crawl 6x faster, dev memory âˆ’28 %, cold bundling 20-50%, warm bundling 3-8x faster" width="800" height="649"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;SDK 56 ships the first wave of performance improvements across the whole bundling and run pipeline, with more landing in future releases.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Faster CLI&lt;/strong&gt;: Various performance metrics of the Expo CLI have been improved in SDK 56&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;On-demand Filesystem&lt;/strong&gt;: eliminates &lt;code&gt;watchFolders&lt;/code&gt; as a load-bearing configuration option. Enabled by default; disable it by adding &lt;code&gt;experiment.onDemandFilesystem: false&lt;/code&gt; to your &lt;strong&gt;app.json&lt;/strong&gt;. &lt;a href="https://github.com/expo/expo/pull/45391" rel="noopener noreferrer"&gt;Learn more in the PR&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Native Node.js watcher by default&lt;/strong&gt;: rather than Watchman, we now use a native Node.js watcher and crawler by default. You can switch back to Watchman with &lt;code&gt;resolver.useWatchman&lt;/code&gt; in a Metro config, but it's no longer recommended.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;TypeScript 6 support and TypeScript 7 readiness&lt;/strong&gt;: we replaced our &lt;a href="https://www.typescriptlang.org/docs/handbook/release-notes/typescript-6-0.html" rel="noopener noreferrer"&gt;TypeScript&lt;/a&gt; resolution to support TS 6 and prepare for &lt;a href="https://devblogs.microsoft.com/typescript/announcing-typescript-7-0-beta/" rel="noopener noreferrer"&gt;TS 7&lt;/a&gt;. This resolves some monorepo bugs with &lt;code&gt;tsconfig.json&lt;/code&gt;'s &lt;code&gt;paths&lt;/code&gt; config (&lt;a href="https://github.com/expo/expo/pull/44791" rel="noopener noreferrer"&gt;#44791&lt;/a&gt;, &lt;a href="https://github.com/expo/expo/pull/45227" rel="noopener noreferrer"&gt;#45227&lt;/a&gt;).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;**import.meta**&lt;/code&gt;** support**: now enabled automatically (&lt;a href="https://github.com/expo/expo/pull/44239" rel="noopener noreferrer"&gt;#44239&lt;/a&gt;).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Hermes v1 transforms&lt;/strong&gt;: fewer bundler transforms are enabled for Hermes, which reduces bundling times overall (&lt;a href="https://github.com/expo/expo/pull/45263" rel="noopener noreferrer"&gt;#45263&lt;/a&gt;, &lt;a href="https://github.com/expo/expo/pull/45345" rel="noopener noreferrer"&gt;#45345&lt;/a&gt;).&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;With the On-demand Filesystem, you can also now try Expo with &lt;a href="https://pnpm.io/global-virtual-store" rel="noopener noreferrer"&gt;global virtual stores&lt;/a&gt; (such as in Bun and pnpm), which deduplicates installed Node modules across projects (saving ~300 MB per duplicate Expo install) and speeds up installs for agents working across multiple Git worktrees.&lt;/p&gt;

&lt;h3&gt;
  
  
  Type-safe config plugins
&lt;/h3&gt;

&lt;p&gt;Every Expo package that ships a config plugin now exports it with full TypeScript types. Import the plugin from &lt;code&gt;expo-&amp;lt;name&amp;gt;/plugin&lt;/code&gt; into your &lt;strong&gt;app.config.ts&lt;/strong&gt; to get autocomplete, JSDoc, and deprecation hints for plugin options without leaving your editor.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ff3hxhfq2k4c9n93ctisg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ff3hxhfq2k4c9n93ctisg.png" alt="JSDoc for an Expo config plugin's options inside app.config.ts" width="800" height="577"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Additionally, config plugins are now loaded with the same module loader that configs themselves use. This means you'll now also be able to reference local &lt;code&gt;.ts&lt;/code&gt; files in your &lt;strong&gt;plugins&lt;/strong&gt; list, or write config plugins with &lt;code&gt;.mjs&lt;/code&gt; or &lt;code&gt;.cjs&lt;/code&gt; extensions.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Expo Router&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Expo goes way back with React Navigation: &lt;a href="https://github.com/brentvatne" rel="noopener noreferrer"&gt;@brentvatne&lt;/a&gt; led the project for the 1.0 and 2.0 releases, working together with &lt;a href="https://github.com/ericvicenti" rel="noopener noreferrer"&gt;@ericvicenti&lt;/a&gt; and &lt;a href="https://github.com/satya164" rel="noopener noreferrer"&gt;@satya164&lt;/a&gt;, and we helped to grow it from an idea, to a conceptual merging of React Native's old &lt;code&gt;NavigationExperimental&lt;/code&gt; and &lt;a href="https://github.com/expo/ex-navigation" rel="noopener noreferrer"&gt;ex-navigation&lt;/a&gt;, to the standard navigation library in the React Native ecosystem (now one of the standards, alongside Expo Router).&lt;/p&gt;

&lt;p&gt;Today, React Navigation is in &lt;a href="https://github.com/satya164" rel="noopener noreferrer"&gt;Satya's&lt;/a&gt; great hands, and our focus in the navigation space has shifted towards Expo Router. We spoke with Satya and agreed that the best path forward for both projects was for Expo Router to fork the parts of React Navigation that it builds around. You can, of course, continue to use React Navigation in your Expo projects if you find that you prefer it (try it out: &lt;code&gt;npx create-expo-app@latest --template react-navigation/template&lt;/code&gt;). Both libraries build upon &lt;a href="https://github.com/software-mansion/react-native-screens" rel="noopener noreferrer"&gt;react-native-screens&lt;/a&gt; and have different takes on the developer experience, with Expo Router preferring file system-based routing. We expect that each library will continue to push the other forward in the future, and that the best ideas will continue to flow between them.&lt;/p&gt;

&lt;p&gt;Now that &lt;code&gt;expo-router&lt;/code&gt; no longer depends on &lt;code&gt;react-navigation&lt;/code&gt;, most code imported directly from &lt;code&gt;@react-navigation/*&lt;/code&gt; packages will no longer work out of the box alongside &lt;code&gt;expo-router&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Run the codemod to handle most of the migration automatically (replace &lt;code&gt;[your-source-directory]&lt;/code&gt; with your source folder, e.g. &lt;code&gt;src&lt;/code&gt; or &lt;code&gt;app&lt;/code&gt;):&lt;/p&gt;

&lt;p&gt;See the &lt;a href="https://docs.expo.dev/router/migrate/sdk-55-to-56/" rel="noopener noreferrer"&gt;migration guide&lt;/a&gt; for full details, including manual migration steps.&lt;/p&gt;

&lt;h3&gt;
  
  
  New features
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;On Android, we've added experimental support for a toolbar. You can try it using the same API available on iOS: &lt;code&gt;[Stack.Toolbar](https://docs.expo.dev/router/advanced/stack-toolbar/)&lt;/code&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;In collaboration with &lt;code&gt;[react-native-screens](https://github.com/software-mansion/react-native-screens)&lt;/code&gt;, we've also introduced experimental support for &lt;a href="https://github.com/software-mansion/react-native-screens/releases/tag/4.25.0-beta.1" rel="noopener noreferrer"&gt;a new version of the native stack&lt;/a&gt; (Stack v5), including initial support for Material-style headers and predictive back gesture.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;For Expo on the Web, we now support streaming SSR when using the &lt;code&gt;unstable_useServerRendering&lt;/code&gt; flag. As part of this change, we've also introduced a new &lt;code&gt;[generateMetadata](https://docs.expo.dev/router/web/server-rendering/#metadata)&lt;/code&gt; function for retrieving and setting metadata on initial page load. The existing &lt;code&gt;&amp;lt;Head&amp;gt;&lt;/code&gt; component can still be used for updating metadata after hydration. Let us know how it works for you!&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;We've also added two new helpers for data loaders: &lt;code&gt;[createStaticLoader](https://docs.expo.dev/versions/v56.0.0/sdk/server/#createstaticloaderfn)&lt;/code&gt; and &lt;code&gt;[createServerLoader](https://docs.expo.dev/versions/v56.0.0/sdk/server/#createserverloaderfn)&lt;/code&gt;, which narrow the callback signature for each rendering mode. &lt;code&gt;createStaticLoader&lt;/code&gt; receives only route params (no &lt;code&gt;request&lt;/code&gt;), while &lt;code&gt;createServerLoader&lt;/code&gt; always passes a &lt;code&gt;request&lt;/code&gt; and throws an actionable error if mistakenly used during static generation.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;We've also added the ability to &lt;a href="https://docs.expo.dev/router/error-handling/#loading-states-with-suspense-fallback" rel="noopener noreferrer"&gt;customize the default &lt;/a&gt;&lt;code&gt;[&amp;lt;Suspense&amp;gt;](https://docs.expo.dev/router/error-handling/#loading-states-with-suspense-fallback)&lt;/code&gt;&lt;a href="https://docs.expo.dev/router/error-handling/#loading-states-with-suspense-fallback" rel="noopener noreferrer"&gt; fallbacks in a &lt;/a&gt;&lt;code&gt;[_layout](https://docs.expo.dev/router/error-handling/#loading-states-with-suspense-fallback)&lt;/code&gt;&lt;a href="https://docs.expo.dev/router/error-handling/#loading-states-with-suspense-fallback" rel="noopener noreferrer"&gt; route&lt;/a&gt;, giving you more control over loading states across your app. Following the same convention as &lt;code&gt;ErrorBoundary&lt;/code&gt;, you can export a &lt;code&gt;SuspenseFallback&lt;/code&gt; that receives route parameters, making it easy to show loading UI:&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tsx"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;ActivityIndicator&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;View&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;react-native&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;Stack&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;expo-router&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;SuspenseFallback&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="k"&gt;return &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
    &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nc"&gt;View&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="na"&gt;flex&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="na"&gt;justifyContent&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;center&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="na"&gt;alignItems&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;center&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
      &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nc"&gt;ActivityIndicator&lt;/span&gt; &lt;span class="na"&gt;size&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;"large"&lt;/span&gt; &lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
    &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nc"&gt;View&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
  &lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="k"&gt;default&lt;/span&gt; &lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;RootLayout&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nc"&gt;Stack&lt;/span&gt; &lt;span class="p"&gt;/&amp;gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  &lt;strong&gt;Brownfield: more flexibility for embedded Expo apps&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;SDK 56 builds on the brownfield foundation we shipped in SDK 55, with three meaningful additions for teams embedding Expo into existing native apps.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Multiple isolated apps in one host.&lt;/strong&gt; A new experimental option lets one host app contain multiple inner &lt;code&gt;[expo-brownfield](https://docs.expo.dev/versions/v56.0.0/sdk/brownfield/)&lt;/code&gt; apps. Opt in by setting &lt;code&gt;multipleFrameworks: true&lt;/code&gt; on the iOS plugin config, and each framework gets a unique Swift module name plus an auto-applied ObjC symbol prefix across its entire pod dependency graph, so two brownfield apps can ship side by side without colliding.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="err"&gt;//&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;app.json&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"plugins"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="s2"&gt;"expo-brownfield"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"ios"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
          &lt;/span&gt;&lt;span class="nl"&gt;"multipleFrameworks"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Custom Turbo Modules from the host app.&lt;/strong&gt; Host apps can now register their own turbo module classes with the inner Expo app's React Native runtime, by passing a &lt;code&gt;turboModuleClasses&lt;/code&gt; dictionary into &lt;code&gt;ReactNativeHostManager.initialize&lt;/code&gt;. This makes it much easier to expose host-app capabilities (auth, app-specific SDKs, native UI controllers) to JavaScript without modifying the inner app's bundle.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;iOS prebuilds by default.&lt;/strong&gt; &lt;code&gt;expo-brownfield&lt;/code&gt; now uses prebuilt React Native frameworks on iOS out of the box, which substantially cuts brownfield build times. If you need to opt back into building React Native from source, use the new &lt;code&gt;buildReactNativeFromSource&lt;/code&gt; plugin option.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Expo Application Services (EAS)&lt;/strong&gt;
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Build time statistics for xcodebuild and Gradle
&lt;/h3&gt;

&lt;p&gt;EAS Build now surfaces per-step timing for &lt;code&gt;xcodebuild&lt;/code&gt; and Gradle, so you can see exactly where your native build time is spent and decide what to optimize first.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvqb64b4dlszaqssqul75.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvqb64b4dlszaqssqul75.png" alt="EAS Build dashboard showing per-module Xcode compile metrics on the left and a Gradle task execution profile on the right" width="800" height="466"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Prebuilt artifacts for major community libraries
&lt;/h3&gt;

&lt;p&gt;Building on the precompiled Expo packages work in SDK 56, EAS Build now precompiles some of the most commonly used community libraries in the React Native ecosystem too â€” like &lt;code&gt;react-native-reanimated&lt;/code&gt; and &lt;code&gt;react-native-screens&lt;/code&gt;. In our measurements, this cuts median iOS clean build times on EAS Build by another ~1 minute (~20%) on top of the Expo-modules precompile, with bigger savings for apps that use more of these libraries.&lt;/p&gt;

&lt;h3&gt;
  
  
  Coming soon: EAS Observe
&lt;/h3&gt;

&lt;p&gt;We're working on &lt;a href="https://expo.dev/solutions/expo-observe" rel="noopener noreferrer"&gt;EAS Observe&lt;/a&gt;, a production performance monitoring service for Expo apps that tracks real-world metrics on your users' devices. Compare metrics across releases to catch regressions early, then investigate detailed session data (on your own, or hand it off to an LLM) when something looks off. &lt;a href="https://github.com/kadikraman" rel="noopener noreferrer"&gt;Kadi Kraman&lt;/a&gt; shared a deeper preview at &lt;a href="https://appjs.co/" rel="noopener noreferrer"&gt;App.js Conf&lt;/a&gt; â€” keep an eye out for the recording.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Other notable changes&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;[**expo-audio**](https://docs.expo.dev/versions/v56.0.0/sdk/audio/)&lt;/code&gt;: new &lt;code&gt;useAudioStream&lt;/code&gt; hook for real-time microphone buffer access (&lt;a href="https://github.com/expo/expo/pull/44902" rel="noopener noreferrer"&gt;#44902&lt;/a&gt;). Live-stream improvements: &lt;code&gt;isLiveStream&lt;/code&gt; lock-screen option on iOS (&lt;a href="https://github.com/expo/expo/pull/43088" rel="noopener noreferrer"&gt;#43088&lt;/a&gt;), &lt;code&gt;playsInSilentMode&lt;/code&gt; on Android (&lt;a href="https://github.com/expo/expo/pull/43117" rel="noopener noreferrer"&gt;#43117&lt;/a&gt;), and &lt;code&gt;isLive&lt;/code&gt; / &lt;code&gt;currentOffsetFromLive&lt;/code&gt; / &lt;code&gt;error&lt;/code&gt; fields on &lt;code&gt;AudioStatus&lt;/code&gt; (&lt;a href="https://github.com/expo/expo/pull/44441" rel="noopener noreferrer"&gt;#44441&lt;/a&gt;).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;[**expo-haptics**](https://docs.expo.dev/versions/v56.0.0/sdk/haptics/)&lt;/code&gt;: web haptics on Safari (&lt;a href="https://github.com/expo/expo/pull/44261" rel="noopener noreferrer"&gt;#44261&lt;/a&gt;).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;[**expo-asset**](https://docs.expo.dev/versions/v56.0.0/sdk/asset/)&lt;/code&gt;: GLB model assets for 3D / AR work (&lt;a href="https://github.com/expo/expo/pull/42495" rel="noopener noreferrer"&gt;#42495&lt;/a&gt;).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;[**expo-sqlite**](https://docs.expo.dev/versions/v56.0.0/sdk/sqlite/)&lt;/code&gt;: native &lt;code&gt;ArrayBuffer&lt;/code&gt; for blob columns (&lt;a href="https://github.com/expo/expo/pull/42640" rel="noopener noreferrer"&gt;Android #42640&lt;/a&gt; / &lt;a href="https://github.com/expo/expo/pull/42642" rel="noopener noreferrer"&gt;iOS #42642&lt;/a&gt;), statement bind params (&lt;a href="https://github.com/expo/expo/pull/42639" rel="noopener noreferrer"&gt;#42639&lt;/a&gt;), and session changesets (&lt;a href="https://github.com/expo/expo/pull/42638" rel="noopener noreferrer"&gt;#42638&lt;/a&gt;) â€” replacing the legacy &lt;code&gt;JavaScriptArrayBuffer&lt;/code&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;[**expo-dev-launcher**](https://docs.expo.dev/versions/v56.0.0/sdk/dev-client/)&lt;/code&gt;: error-screen "Copy" button (&lt;a href="https://github.com/expo/expo/pull/44723" rel="noopener noreferrer"&gt;#44723&lt;/a&gt;), NDS service discovery on Android, Android edge-to-edge (&lt;a href="https://github.com/expo/expo/pull/44529" rel="noopener noreferrer"&gt;#44529&lt;/a&gt;), and plugin options for &lt;code&gt;defaultLaunchURL&lt;/code&gt; (&lt;a href="https://github.com/expo/expo/pull/44419" rel="noopener noreferrer"&gt;#44419&lt;/a&gt;), &lt;code&gt;skipOnboarding&lt;/code&gt;, and &lt;code&gt;showMenuAtLaunch&lt;/code&gt; (&lt;a href="https://github.com/expo/expo/pull/45167" rel="noopener noreferrer"&gt;#45167&lt;/a&gt;).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;**expo-doctor**&lt;/code&gt;: a new check warns when &lt;code&gt;expo-router&lt;/code&gt; and &lt;code&gt;react-navigation&lt;/code&gt; are both installed â€” a likely unintended pairing now that &lt;code&gt;expo-router&lt;/code&gt; no longer sits on top of &lt;code&gt;react-navigation&lt;/code&gt; (&lt;a href="https://github.com/expo/expo/pull/45323" rel="noopener noreferrer"&gt;#45323&lt;/a&gt;).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;[**expo/fetch**](https://docs.expo.dev/versions/v56.0.0/sdk/expo/#expofetch-api)&lt;/code&gt;: brotli, gzip, and zstd response decompression on Android (&lt;a href="https://github.com/expo/expo/pull/45458" rel="noopener noreferrer"&gt;#45458&lt;/a&gt;), and &lt;code&gt;AbortSignal.timeout&lt;/code&gt; / &lt;code&gt;AbortSignal.any&lt;/code&gt; support for WinterTC-compatible fetch behavior (&lt;a href="https://github.com/expo/expo/pull/45441" rel="noopener noreferrer"&gt;#45441&lt;/a&gt;).&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Deprecations&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;**@expo/vector-icons**&lt;/code&gt;** will be replaced by &lt;strong&gt;`&lt;/strong&gt;@react-native-vector-icons/**&lt;em&gt;&lt;code&gt;: the new [scoped packages](https://github.com/oblador/react-native-vector-icons) (one per icon set, e.g. &lt;/code&gt;@react-native-vector-icons/material-design-icons&lt;code&gt;) are distinct from the older umbrella &lt;/code&gt;react-native-vector-icons&lt;code&gt; package that &lt;/code&gt;@expo/vector-icons&lt;code&gt; originally replaced. &lt;/code&gt;@expo/vector-icons&lt;code&gt; was created for Expo Go compatibility; recent upstream work has made that wrapper unnecessary, so consolidating onto &lt;/code&gt;@react-native-vector-icons/&lt;/em&gt;&lt;code&gt; reduces duplication and gives you the latest icons and fixes directly. Migrate today by running &lt;/code&gt;npx @react-native-vector-icons/codemod` â€” &lt;a href="https://github.com/oblador/react-native-vector-icons/blob/master/MIGRATION.md" rel="noopener noreferrer"&gt;Learn more about the codemod&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Original **`&lt;/strong&gt;expo-calendar*&lt;em&gt;`&lt;/em&gt;&lt;em&gt;, *&lt;/em&gt;&lt;code&gt;**expo-contacts**&lt;/code&gt;&lt;strong&gt;, and **`&lt;/strong&gt;expo-media-library*&lt;em&gt;`&lt;/em&gt;* APIs**: superseded by the redesigned versions now promoted to stable â€” the original APIs are deprecated.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Notable breaking changes&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;**expo/fetch**&lt;/code&gt;** as &lt;strong&gt;`&lt;/strong&gt;globalThis.fetch*&lt;em&gt;&lt;code&gt;: &lt;/code&gt;expo/fetch&lt;code&gt; is now installed as the default implementation of &lt;/code&gt;globalThis.fetch&lt;code&gt;, providing a WinterTC-compliant API and improved performance. Manual imports are no longer required. To opt out, set &lt;/code&gt;EXPO_PUBLIC_USE_RN_FETCH=1` in your *&lt;/em&gt;.env** file. &lt;a href="https://docs.expo.dev/versions/v56.0.0/sdk/expo/#expofetch-api" rel="noopener noreferrer"&gt;Learn more&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Async **`&lt;/strong&gt;copy()&lt;strong&gt;`&lt;/strong&gt; and &lt;strong&gt;`&lt;/strong&gt;move()&lt;strong&gt;`&lt;/strong&gt; in &lt;strong&gt;`&lt;/strong&gt;expo-file-system**&lt;code&gt;: these methods on &lt;/code&gt;File&lt;code&gt; and &lt;/code&gt;Directory&lt;code&gt; are now asynchronous and return a Promise. Use &lt;/code&gt;copySync()&lt;code&gt; and &lt;/code&gt;moveSync()` for synchronous behavior.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;**@expo/dom-webview**&lt;/code&gt;** as the default WebView for DOM components**: you no longer need the &lt;code&gt;react-native-webview&lt;/code&gt; dependency to use DOM components. You can still opt out and continue using &lt;code&gt;react-native-webview&lt;/code&gt; if needed. &lt;a href="https://docs.expo.dev/guides/dom-components/#usage" rel="noopener noreferrer"&gt;Learn more in the usage guide&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Related to the planned deprecation of &lt;code&gt;@expo/vector-icons&lt;/code&gt; (see the previous paragraph), the &lt;code&gt;expo&lt;/code&gt; package no longer depends on &lt;code&gt;@expo/vector-icons&lt;/code&gt;. If you wish to continue using &lt;code&gt;@expo/vector-icons&lt;/code&gt;, you need to explicitly add it to your project's dependencies in &lt;code&gt;package.json&lt;/code&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Tool version bumps&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Minimum Xcode bumped to 26.4.&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Minimum iOS / tvOS bumped to 16.4, macOS to 13.4.&lt;/strong&gt; Up from iOS 15.1 (last bumped August 2024). Drops support for iPhone 7/7+, iPhone 6s/6s+, iPhone SE (1st gen), iPad mini 4, and iPad Air 2.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;&lt;a href="https://www.typescriptlang.org/docs/handbook/release-notes/typescript-6-0.html" rel="noopener noreferrer"&gt;TypeScript bumped to 6.0.3&lt;/a&gt;&lt;/strong&gt; â€” included in new project templates and pulled in for existing projects via &lt;code&gt;npx expo install --fix&lt;/code&gt;. To opt out, add &lt;code&gt;typescript&lt;/code&gt; to the &lt;code&gt;[expo.install.exclude](https://docs.expo.dev/versions/v56.0.0/config/package-json/#installexclude)&lt;/code&gt; field in your &lt;strong&gt;package.json&lt;/strong&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Expo Go&lt;/strong&gt;
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Reminder&lt;/strong&gt;: The Expo Go app is our tool for getting started quickly, it's an educational tool to help you learn to build on mobile. If you are past that stage and want to build and ship an app, we encourage you to migrate your project to using a &lt;a href="https://docs.expo.dev/develop/development-builds/expo-go-to-dev-build/" rel="noopener noreferrer"&gt;development build&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Expo Go for SDK 56 is not available on the Apple App Store or Google Play Store.&lt;/strong&gt; We do not have a timeline for when they will be, and we'll update this post when we have more news to share.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;You can install Expo Go for SDK 56 from Expo CLI directly on Android devices.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;For iOS, you can use the &lt;a href="https://testflight.apple.com/join/GZJxxfUU" rel="noopener noreferrer"&gt;TestFlight External Beta&lt;/a&gt; or the &lt;code&gt;eas go&lt;/code&gt; command to create an Expo Go build for SDK 56 and upload it to your own TestFlight team.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Upgrading your app&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Try using our &lt;a href="https://github.com/expo/skills/tree/main/plugins/upgrading-expo" rel="noopener noreferrer"&gt;upgrade skills&lt;/a&gt; (&lt;a href="https://github.com/expo/skills/tree/main?tab=readme-ov-file#claude-code" rel="noopener noreferrer"&gt;installation instructions&lt;/a&gt;) with Claude Code, or a similar tool of your choice, to upgrade your app.&lt;/p&gt;

&lt;p&gt;Here's how to upgrade your app to Expo SDK 56 from 55:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Upgrade all dependencies to match SDK 56&lt;/strong&gt;:&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Check for any possible known issues with Expo Doctor&lt;/strong&gt;:&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Refer to the &lt;strong&gt;[&lt;/strong&gt;"Deprecations"**](#deprecations)&lt;/strong&gt; and &lt;strong&gt;[&lt;/strong&gt;"Notable breaking changes"&lt;strong&gt;](#notable-breaking-changes)&lt;/strong&gt; sections** above for breaking changes that are most likely to impact your app.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Make sure to check the &lt;strong&gt;[&lt;/strong&gt;changelog**](&lt;a href="https://github.com/expo/expo/blob/main/CHANGELOG.md" rel="noopener noreferrer"&gt;https://github.com/expo/expo/blob/main/CHANGELOG.md&lt;/a&gt;)&lt;/strong&gt; for all other breaking changes!**&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Upgrade Xcode if needed&lt;/strong&gt;: Xcode 26.4 is required to compile a native iOS project. For EAS Build and Workflows, profiles without any specified &lt;code&gt;image&lt;/code&gt; will default to Xcode 26.4.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;iOS deployment target bump&lt;/strong&gt;: if you have any Expo modules of your own, update the iOS deployment target to &lt;code&gt;16.4&lt;/code&gt; in your podspec.&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight diff"&gt;&lt;code&gt;&lt;span class="gd"&gt;- s.platforms = { :ios =&amp;gt; '15.1' }
&lt;/span&gt;&lt;span class="gi"&gt;+ s.platforms = { :ios =&amp;gt; '16.4' }
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;*&lt;em&gt;If you use *&lt;/em&gt;&lt;a href="https://docs.expo.dev/workflow/continuous-native-generation/" rel="noopener noreferrer"&gt;&lt;strong&gt;Continuous Native Generation&lt;/strong&gt;&lt;/a&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Delete the &lt;strong&gt;android&lt;/strong&gt; and &lt;strong&gt;ios&lt;/strong&gt; directories if you generated them for a previous SDK version in your local project directory. They'll be re-generated next time you run a build, either with &lt;code&gt;npx expo run:ios&lt;/code&gt;, &lt;code&gt;npx expo prebuild&lt;/code&gt;, or with EAS Build.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;

&lt;p&gt;&lt;strong&gt;If you **&lt;u&gt;&lt;/u&gt;&lt;/strong&gt;don't*&lt;em&gt;&lt;/em&gt;* use &lt;strong&gt;[&lt;/strong&gt;Continuous Native Generation**](&lt;a href="https://docs.expo.dev/workflow/continuous-native-generation/):" rel="noopener noreferrer"&gt;https://docs.expo.dev/workflow/continuous-native-generation/):&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Run &lt;code&gt;npx pod-install&lt;/code&gt; if you have an &lt;code&gt;ios&lt;/code&gt; directory.&lt;/li&gt;
&lt;li&gt;Apply any relevant changes from the &lt;a href="https://docs.expo.dev/bare/upgrade/?fromSdk=55&amp;amp;toSdk=56" rel="noopener noreferrer"&gt;Native project upgrade helper&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Optionally, you could consider &lt;a href="https://docs.expo.dev/guides/adopting-prebuild/" rel="noopener noreferrer"&gt;adopting prebuild&lt;/a&gt; for easier upgrades in the future.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;&lt;p&gt;*&lt;em&gt;If you use *&lt;/em&gt;&lt;a href="https://docs.expo.dev/develop/development-builds/introduction/" rel="noopener noreferrer"&gt;&lt;strong&gt;development builds with expo-dev-client&lt;/strong&gt;&lt;/a&gt;: Create a new development build after upgrading.&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;&lt;strong&gt;If you use Expo Go&lt;/strong&gt;: consider migrating to &lt;a href="https://docs.expo.dev/develop/development-builds/expo-go-to-dev-build/" rel="noopener noreferrer"&gt;development builds&lt;/a&gt;. &lt;a href="https://expo.fyi/expo-go-usage" rel="noopener noreferrer"&gt;Expo Go is not recommended as a development environment for production apps&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;&lt;strong&gt;Having trouble?&lt;/strong&gt; Refer to the &lt;a href="https://expo.fyi/troubleshooting-sdk-upgrades" rel="noopener noreferrer"&gt;Troubleshooting your SDK upgrade&lt;/a&gt; guide.&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;&lt;strong&gt;Questions?&lt;/strong&gt; Join our weekly office hours on Wednesdays at 12:00PM Pacific &lt;a href="https://chat.expo.dev/" rel="noopener noreferrer"&gt;on Discord&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;

&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Thanks to everyone who contributed to the release!&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Thanks to &lt;a href="https://expo.dev/about" rel="noopener noreferrer"&gt;the Expo team&lt;/a&gt; â€” everyone contributed one way or another.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;External contributors&lt;/strong&gt;: &lt;a href="https://github.com/abraj" rel="noopener noreferrer"&gt;Abhishek Raj&lt;/a&gt;, &lt;a href="https://github.com/aramikuto" rel="noopener noreferrer"&gt;Aleksandr Kondrashov&lt;/a&gt;, &lt;a href="https://github.com/alfonsocj" rel="noopener noreferrer"&gt;Alfonso Curbelo&lt;/a&gt;, &lt;a href="https://github.com/AmauryLiet" rel="noopener noreferrer"&gt;Amaury Liet&lt;/a&gt;, &lt;a href="https://github.com/andrejpavlovic" rel="noopener noreferrer"&gt;Andrej Pavlovic&lt;/a&gt;, &lt;a href="https://github.com/SialB" rel="noopener noreferrer"&gt;Arthur Blais&lt;/a&gt;, &lt;a href="https://github.com/artus9033" rel="noopener noreferrer"&gt;Artur Morys - Magiera&lt;/a&gt;, &lt;a href="https://github.com/AzeemIdrisi" rel="noopener noreferrer"&gt;Azeem Idrisi&lt;/a&gt;, &lt;a href="https://github.com/azro352" rel="noopener noreferrer"&gt;azro352&lt;/a&gt;, &lt;a href="https://github.com/benschac" rel="noopener noreferrer"&gt;benjamin&lt;/a&gt;, &lt;a href="https://github.com/benjaminkomen" rel="noopener noreferrer"&gt;Benjamin Komen&lt;/a&gt;, &lt;a href="https://github.com/bwallberg" rel="noopener noreferrer"&gt;Benjamin Wallberg&lt;/a&gt;, &lt;a href="https://github.com/blazejkustra" rel="noopener noreferrer"&gt;BÅ‚aÅ¼ej Kustra&lt;/a&gt;, &lt;a href="https://github.com/CalvinNFT" rel="noopener noreferrer"&gt;C. Obama&lt;/a&gt;, &lt;a href="https://github.com/CamWass" rel="noopener noreferrer"&gt;CamWass&lt;/a&gt;, &lt;a href="https://github.com/Choco-milk-for-u" rel="noopener noreferrer"&gt;Choco&lt;/a&gt;, &lt;a href="https://github.com/chrism" rel="noopener noreferrer"&gt;Chris Masters&lt;/a&gt;, &lt;a href="https://github.com/chriszs" rel="noopener noreferrer"&gt;Chris Zubak-Skees&lt;/a&gt;, &lt;a href="https://github.com/cwooldridge1" rel="noopener noreferrer"&gt;Christian Wooldridge&lt;/a&gt;, &lt;a href="https://github.com/cibucristi" rel="noopener noreferrer"&gt;Cristian C.&lt;/a&gt;, &lt;a href="https://github.com/daliboru" rel="noopener noreferrer"&gt;Dalibor Belic&lt;/a&gt;, &lt;a href="https://github.com/pubkey" rel="noopener noreferrer"&gt;Daniel Meyer&lt;/a&gt;, &lt;a href="https://github.com/reichhartd" rel="noopener noreferrer"&gt;Daniel Reichhart&lt;/a&gt;, &lt;a href="https://github.com/danishshaik" rel="noopener noreferrer"&gt;Danish&lt;/a&gt;, &lt;a href="https://github.com/DaveyEke" rel="noopener noreferrer"&gt;Dave Mkpa-Eke&lt;/a&gt;, &lt;a href="https://github.com/delphinebugner" rel="noopener noreferrer"&gt;Delphine Bugner&lt;/a&gt;, &lt;a href="https://github.com/morellodev" rel="noopener noreferrer"&gt;Dennis Morello&lt;/a&gt;, &lt;a href="https://github.com/desii101" rel="noopener noreferrer"&gt;desii&lt;/a&gt;, &lt;a href="https://github.com/DimitarNestorov" rel="noopener noreferrer"&gt;Dimitar Nestorov&lt;/a&gt;, &lt;a href="https://github.com/dogukany" rel="noopener noreferrer"&gt;DoÄŸukan YÄ±ldÄ±z&lt;/a&gt;, &lt;a href="https://github.com/codenamenam" rel="noopener noreferrer"&gt;Donghoon Nam&lt;/a&gt;, &lt;a href="https://github.com/dwightwatson" rel="noopener noreferrer"&gt;Dwight Watson&lt;/a&gt;, &lt;a href="https://github.com/dylancom" rel="noopener noreferrer"&gt;Dylan&lt;/a&gt;, &lt;a href="https://github.com/emillinden" rel="noopener noreferrer"&gt;Emil LindÃ©n&lt;/a&gt;, &lt;a href="https://github.com/erickreutz" rel="noopener noreferrer"&gt;Eric Kreutzer&lt;/a&gt;, &lt;a href="https://github.com/EricZeiberg" rel="noopener noreferrer"&gt;Eric Zeiberg&lt;/a&gt;, &lt;a href="https://github.com/nandorojo" rel="noopener noreferrer"&gt;Fernando Rojo&lt;/a&gt;, &lt;a href="https://github.com/frankcalise" rel="noopener noreferrer"&gt;Frank Calise&lt;/a&gt;, &lt;a href="https://github.com/garygcchiu" rel="noopener noreferrer"&gt;Gary Chiu&lt;/a&gt;, &lt;a href="https://github.com/hryhoriiK97" rel="noopener noreferrer"&gt;Gregory Moskaliuk&lt;/a&gt;, &lt;a href="https://github.com/gustavoharff" rel="noopener noreferrer"&gt;Gustavo Harff&lt;/a&gt;, &lt;a href="https://github.com/huextrat" rel="noopener noreferrer"&gt;Hugo Extrat&lt;/a&gt;, &lt;a href="https://github.com/ink404" rel="noopener noreferrer"&gt;Ian K&lt;/a&gt;, &lt;a href="https://github.com/Isaiah-Hamilton" rel="noopener noreferrer"&gt;Isaiah Hamilton&lt;/a&gt;, &lt;a href="https://github.com/kosmydel" rel="noopener noreferrer"&gt;Jakub Kosmydel&lt;/a&gt;, &lt;a href="https://github.com/Jc-Cloete" rel="noopener noreferrer"&gt;Jc Cloete&lt;/a&gt;, &lt;a href="https://github.com/jerone" rel="noopener noreferrer"&gt;Jeroen van Warmerdam&lt;/a&gt;, &lt;a href="https://github.com/Jeroen-G" rel="noopener noreferrer"&gt;JeroenG&lt;/a&gt;, &lt;a href="https://github.com/jeppester" rel="noopener noreferrer"&gt;Jesper SÃ¸rensen&lt;/a&gt;, &lt;a href="https://github.com/ushuz" rel="noopener noreferrer"&gt;John HU&lt;/a&gt;, &lt;a href="https://github.com/jbaudanza" rel="noopener noreferrer"&gt;Jonathan Baudanza&lt;/a&gt;, &lt;a href="https://github.com/jonemilnik" rel="noopener noreferrer"&gt;Jonathan Rivera&lt;/a&gt;, &lt;a href="https://github.com/jgmagift" rel="noopener noreferrer"&gt;Joseph Gift&lt;/a&gt;, &lt;a href="https://github.com/juliesaia" rel="noopener noreferrer"&gt;Julie Saia&lt;/a&gt;, &lt;a href="https://github.com/jurajpaska8" rel="noopener noreferrer"&gt;jurajpaska8&lt;/a&gt;, &lt;a href="https://github.com/dileepapeiris" rel="noopener noreferrer"&gt;K.Dileepa Thushan Peiris&lt;/a&gt;, &lt;a href="https://github.com/kzhgit" rel="noopener noreferrer"&gt;Kazuho Maejima&lt;/a&gt;, &lt;a href="https://github.com/kfirfitousi" rel="noopener noreferrer"&gt;Kfir Fitousi&lt;/a&gt;, &lt;a href="https://github.com/kimchi-developer" rel="noopener noreferrer"&gt;kimchi-developer&lt;/a&gt;, &lt;a href="https://github.com/TheAmphibianX" rel="noopener noreferrer"&gt;Kornelijus Å liubauskas&lt;/a&gt;, &lt;a href="https://github.com/kraenhansen" rel="noopener noreferrer"&gt;KrÃ¦n Hansen&lt;/a&gt;, &lt;a href="https://github.com/KrastanD" rel="noopener noreferrer"&gt;Krastan Dimitrov&lt;/a&gt;, &lt;a href="https://github.com/kyleledbetter" rel="noopener noreferrer"&gt;Kyle Ledbetter&lt;/a&gt;, &lt;a href="https://github.com/focux" rel="noopener noreferrer"&gt;Leonardo E. Dominguez&lt;/a&gt;, &lt;a href="https://github.com/leonmetthez" rel="noopener noreferrer"&gt;leonmetthez&lt;/a&gt;, &lt;a href="https://github.com/chollier" rel="noopener noreferrer"&gt;Loic CHOLLIER&lt;/a&gt;, &lt;a href="https://github.com/lucabc2000" rel="noopener noreferrer"&gt;lucabc2000&lt;/a&gt;, &lt;a href="https://github.com/lsarni" rel="noopener noreferrer"&gt;Lucia Sarni&lt;/a&gt;, &lt;a href="https://github.com/kamui545" rel="noopener noreferrer"&gt;Manu&lt;/a&gt;, &lt;a href="https://github.com/matinzd" rel="noopener noreferrer"&gt;Matin Zadeh Dolatabad&lt;/a&gt;, &lt;a href="https://github.com/shottah" rel="noopener noreferrer"&gt;Matthew Abraham&lt;/a&gt;, &lt;a href="https://github.com/bonjourmauko" rel="noopener noreferrer"&gt;Mauko Quiroga-Alvarado&lt;/a&gt;, &lt;a href="https://github.com/blancham" rel="noopener noreferrer"&gt;Maxime&lt;/a&gt;, &lt;a href="https://github.com/szydlovsky" rel="noopener noreferrer"&gt;MikoÅ‚aj SzydÅ‚owski&lt;/a&gt;, &lt;a href="https://github.com/mohammadamin16" rel="noopener noreferrer"&gt;Mohammad Amin&lt;/a&gt;, &lt;a href="https://github.com/mmomtchev" rel="noopener noreferrer"&gt;Momtchil Momtchev&lt;/a&gt;, &lt;a href="https://github.com/Miigaarino" rel="noopener noreferrer"&gt;Myagmarsuren&lt;/a&gt;, &lt;a href="https://github.com/pachun" rel="noopener noreferrer"&gt;Nicholas Pachulski&lt;/a&gt;, &lt;a href="https://github.com/nickater" rel="noopener noreferrer"&gt;Nick Ater&lt;/a&gt;, &lt;a href="https://github.com/cortinico" rel="noopener noreferrer"&gt;Nicola Corti&lt;/a&gt;, &lt;a href="https://github.com/OtavioStasiak" rel="noopener noreferrer"&gt;OtÃ¡vio Stasiak&lt;/a&gt;, &lt;a href="https://github.com/patrickmichalik" rel="noopener noreferrer"&gt;Patrick Michalik&lt;/a&gt;, &lt;a href="https://github.com/patw0929" rel="noopener noreferrer"&gt;Patrick Wang&lt;/a&gt;, &lt;a href="https://github.com/pmleczek" rel="noopener noreferrer"&gt;Patryk Mleczek&lt;/a&gt;, &lt;a href="https://github.com/peterlazar1993" rel="noopener noreferrer"&gt;Peter Lazar&lt;/a&gt;, &lt;a href="https://github.com/pchalupa" rel="noopener noreferrer"&gt;Petr Chalupa&lt;/a&gt;, &lt;a href="https://github.com/Pflaumenbaum" rel="noopener noreferrer"&gt;Pflaumenbaum&lt;/a&gt;, &lt;a href="https://github.com/preetpatel" rel="noopener noreferrer"&gt;Preet Patel&lt;/a&gt;, &lt;a href="https://github.com/Randall71" rel="noopener noreferrer"&gt;Randall71&lt;/a&gt;, &lt;a href="https://github.com/Regi24" rel="noopener noreferrer"&gt;Regi24&lt;/a&gt;, &lt;a href="https://github.com/tmdgusya" rel="noopener noreferrer"&gt;roach&lt;/a&gt;, &lt;a href="https://github.com/rodrigoaraujo7" rel="noopener noreferrer"&gt;Rodrigo Leite Araujo&lt;/a&gt;, &lt;a href="https://github.com/ronickg" rel="noopener noreferrer"&gt;Ronald Goedeke&lt;/a&gt;, &lt;a href="https://github.com/SamuelBrucksch" rel="noopener noreferrer"&gt;Samuel Brucksch&lt;/a&gt;, &lt;a href="https://github.com/mozzius" rel="noopener noreferrer"&gt;Samuel Newman&lt;/a&gt;, &lt;a href="https://github.com/satya164" rel="noopener noreferrer"&gt;Satyajit Sahoo&lt;/a&gt;, &lt;a href="https://github.com/sergical" rel="noopener noreferrer"&gt;Sergiy Dybskiy&lt;/a&gt;, &lt;a href="https://github.com/psnet" rel="noopener noreferrer"&gt;Serhii Pustovit&lt;/a&gt;, &lt;a href="https://github.com/smoores-dev" rel="noopener noreferrer"&gt;Shane Friedman&lt;/a&gt;, &lt;a href="https://github.com/Shoghy" rel="noopener noreferrer"&gt;Shoghy Martinez&lt;/a&gt;, &lt;a href="https://github.com/shubh73" rel="noopener noreferrer"&gt;Shubh Porwal&lt;/a&gt;, &lt;a href="https://github.com/shindeshubhamm" rel="noopener noreferrer"&gt;Shubham Shinde&lt;/a&gt;, &lt;a href="https://github.com/SnowingFox" rel="noopener noreferrer"&gt;snowingfox&lt;/a&gt;, &lt;a href="https://github.com/starsky-nev" rel="noopener noreferrer"&gt;starsky-nev&lt;/a&gt;, &lt;a href="https://github.com/teamclouday" rel="noopener noreferrer"&gt;teamclouday&lt;/a&gt;, &lt;a href="https://github.com/terijaki" rel="noopener noreferrer"&gt;Terijaki&lt;/a&gt;, &lt;a href="https://github.com/TheUntraceable" rel="noopener noreferrer"&gt;TheUntraceable&lt;/a&gt;, &lt;a href="https://github.com/tmallet" rel="noopener noreferrer"&gt;ThiMal&lt;/a&gt;, &lt;a href="https://github.com/tomekzaw" rel="noopener noreferrer"&gt;Tomasz Zawadzki&lt;/a&gt;, &lt;a href="https://github.com/tyrauber" rel="noopener noreferrer"&gt;Ty Rauber&lt;/a&gt;, &lt;a href="https://github.com/victor-bolivar" rel="noopener noreferrer"&gt;Victor Bolivar De la Cruz&lt;/a&gt;, &lt;a href="https://github.com/dwnste" rel="noopener noreferrer"&gt;Vsevolod Lomovitsky&lt;/a&gt;, &lt;a href="https://github.com/xoyseau" rel="noopener noreferrer"&gt;xoyseau&lt;/a&gt;, &lt;a href="https://github.com/yerevin" rel="noopener noreferrer"&gt;yerevin&lt;/a&gt;, and &lt;a href="https://github.com/doombladeoff" rel="noopener noreferrer"&gt;Zhovtonizhko Dmitriy&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Beta testers&lt;/strong&gt;: &lt;a href="https://github.com/agrittiwari" rel="noopener noreferrer"&gt;Agrit Tiwari&lt;/a&gt;, &lt;a href="https://github.com/Amrit0991" rel="noopener noreferrer"&gt;Amrit Saini&lt;/a&gt;, &lt;a href="https://github.com/androidanimation" rel="noopener noreferrer"&gt;androidanimation&lt;/a&gt;, &lt;a href="https://github.com/sync" rel="noopener noreferrer"&gt;Anthony Mittaz&lt;/a&gt;, &lt;a href="https://github.com/berhanserin" rel="noopener noreferrer"&gt;Berhan&lt;/a&gt;, &lt;a href="https://github.com/branaust" rel="noopener noreferrer"&gt;Brandon Austin&lt;/a&gt;, &lt;a href="https://github.com/DavidJGrimsley" rel="noopener noreferrer"&gt;David Grimsley&lt;/a&gt;, &lt;a href="https://github.com/dylanfcsr" rel="noopener noreferrer"&gt;dylanfcsr&lt;/a&gt;, &lt;a href="https://github.com/eduardinni" rel="noopener noreferrer"&gt;Eduardo LomelÃ­&lt;/a&gt;, &lt;a href="https://github.com/tomoakikuroiwa" rel="noopener noreferrer"&gt;ifx326&lt;/a&gt;, &lt;a href="https://github.com/OkuraKenG" rel="noopener noreferrer"&gt;Kenji Okura&lt;/a&gt;, &lt;a href="https://github.com/Kingfapa" rel="noopener noreferrer"&gt;Kingfapa&lt;/a&gt;, &lt;a href="https://github.com/Luc1412" rel="noopener noreferrer"&gt;Lucas Hardt&lt;/a&gt;, &lt;a href="https://github.com/mhoran" rel="noopener noreferrer"&gt;Matthew Horan&lt;/a&gt;, &lt;a href="https://github.com/maxvaljan" rel="noopener noreferrer"&gt;Max&lt;/a&gt;, &lt;a href="https://github.com/robrechtme-itp" rel="noopener noreferrer"&gt;Robrecht Meersman&lt;/a&gt;, &lt;a href="https://github.com/rodperottoni" rel="noopener noreferrer"&gt;Rodolfo Perottoni&lt;/a&gt;, &lt;a href="https://github.com/simondaigre" rel="noopener noreferrer"&gt;Simon&lt;/a&gt;, and &lt;a href="https://github.com/H-Sven" rel="noopener noreferrer"&gt;Sven&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>expo</category>
      <category>reactnative</category>
      <category>mobile</category>
      <category>javascript</category>
    </item>
    <item>
      <title>ASO Skills: ASO in Your AI Workflow</title>
      <dc:creator>Dan</dc:creator>
      <pubDate>Tue, 19 May 2026 22:59:45 +0000</pubDate>
      <link>https://dev.to/expo/aso-skills-aso-in-your-ai-workflow-3288</link>
      <guid>https://dev.to/expo/aso-skills-aso-in-your-ai-workflow-3288</guid>
      <description>&lt;p&gt;&lt;em&gt;Originally published on &lt;a href="https://expo.dev/blog/aso-skills-aso-in-your-ai-workflow" rel="noopener noreferrer"&gt;expo.dev/blog&lt;/a&gt;&lt;/em&gt;&lt;br&gt;
&lt;em&gt;By Erencan Arica&lt;/em&gt;&lt;/p&gt;



&lt;p&gt;A few years ago, launching a React Native app meant weeks of setup configuring Xcode, managing signing certificates, wrestling with Android Gradle configs, and cobbling together a CI/CD pipeline from scratch. Today, with Expo, a solo developer can go from idea to a production-ready native app in a single afternoon. It's a dream. And that's before we even mention LLMs.&lt;/p&gt;

&lt;p&gt;But speed creates a new problem: when shipping is fast, the bottleneck shifts. It's no longer &lt;em&gt;building&lt;/em&gt; the app, it's &lt;em&gt;getting it found&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;That's where &lt;a href="https://en.wikipedia.org/wiki/App_store_optimization" rel="noopener noreferrer"&gt;App Store Optimization&lt;/a&gt; comes in.&lt;/p&gt;
&lt;h2&gt;
  
  
  Why shipping fast made App Store discovery harder
&lt;/h2&gt;

&lt;p&gt;Here's the tension: Expo makes is easier for everyone to ship an app and now the App Store has over &lt;strong&gt;2 million apps&lt;/strong&gt; competing for attention. Paid acquisition costs have risen over 30% year-over-year, making organic discovery more important than ever.&lt;/p&gt;

&lt;p&gt;And here's the stat that changes everything: &lt;strong&gt;65–70% of app downloads still come from App Store search.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Not ads. Not social media. Not influencers. &lt;strong&gt;Search&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;If your app doesn't rank for the right keywords, most of your potential users will never see it regardless of how polished the product is. Great apps with poor store listings get buried. Mediocre apps with excellent ASO get downloaded.&lt;/p&gt;
&lt;h2&gt;
  
  
  What is App Store Optimization (ASO)?
&lt;/h2&gt;

&lt;p&gt;Before going deeper, I want to explain what App Store Optimization (ASO) actually means. ASO is the practice of optimizing your app to rank higher in App Store or Play Store search results tp attract more users to install.&lt;/p&gt;

&lt;p&gt;Think of it as SEO, but for the App Store. The principles are similar: understand what your users are searching for, then make sure your listing reflects it clearly and accurately.&lt;/p&gt;

&lt;p&gt;There are key elements of ASO:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Title (30 chars)&lt;/strong&gt;: Your strongest ranking signal. A core keyword in the title can lift rankings by up to 10%.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Subtitle (30 chars, iOS):&lt;/strong&gt; A secondary ranking signal. Complement your title with different keywords, both fields are indexed together.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Keyword Field (100 chars, iOS):&lt;/strong&gt; Hidden from users, fully indexed by Apple. No spaces after commas, no duplicates from your title, no filler words.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Screenshots:&lt;/strong&gt; No longer just a conversion tool. With Apple's semantic search, the text in your screenshots is indexed and affects your ranking directly. Users decide in ~7 seconds, so lead with your value prop, use keyword-rich captions, and show real UI.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Ratings &amp;amp; Reviews:&lt;/strong&gt; A direct ranking factor. Prompt at the right moment, after a user achieves something, not on first launch.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Localization:&lt;/strong&gt; Each locale gets its own keyword field, title, and screenshots. Most developers only do English and leave massive markets untapped.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;ASO is not a one-time task. Algorithms evolve, competitors iterate, new keywords emerge. The best teams treat it as an ongoing practice, not a launch checklist. It’s best to revisit your listings each month. That’s why I came up with open-source ASO agent skills with real-time data.&lt;/p&gt;
&lt;h2&gt;
  
  
  ASO Skills: bringing App Store Optimization into your AI workflow
&lt;/h2&gt;

&lt;p&gt;This is the problem I wanted to solve when I built &lt;a href="https://github.com/Eronred/aso-skills" rel="noopener noreferrer"&gt;ASO Skills&lt;/a&gt;, an open-source collection of AI agent skills for App Store Optimization and mobile app marketing.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ff5cz66cpgc1re6f3kzaw.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ff5cz66cpgc1re6f3kzaw.jpg" alt="Appeeky MCP" width="800" height="543"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The idea is simple: &lt;strong&gt;package ASO expertise directly into the tools you already use.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Whether you're working in Cursor, Claude Code, Codex or any Agent Skills-compatible environment, you can ask your AI assistant to run a full ASO audit, research keywords, analyze competitors, and generate optimized metadata, and get structured, actionable results backed by real App Store data.&lt;/p&gt;

&lt;p&gt;The library ships with &lt;strong&gt;20+ skills&lt;/strong&gt; across three areas. But what makes them powerful isn't the individual skills, it's how they work together. Each skill is aware of the others, so instead of running isolated commands, you get a natural, guided workflow:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjr39l9mek23ya1yuiqqh.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjr39l9mek23ya1yuiqqh.png" alt="ASO Flow" width="800" height="815"&gt;&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;aso-audit
   → flags weak spots in your listing
   → recommends keyword-research for gaps

keyword-research
   → finds high-opportunity keywords for your category
   → feeds into metadata-optimization

metadata-optimization
   → generates your title, subtitle, and keyword field
   → ready to ship
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You start with an audit, follow the recommendations, and end with a fully optimized listing, all in one conversation with your AI assistant. No dashboards, no spreadsheets, no context switching.&lt;/p&gt;

&lt;h2&gt;
  
  
  Build, ship, and optimize your app in one workflow
&lt;/h2&gt;

&lt;p&gt;The Expo development workflow is fast, automated, and increasingly AI-native. You can build a polished app, run tests, and ship to production without leaving your editor.&lt;/p&gt;

&lt;p&gt;ASO Skills brings the same philosophy to your marketing workflow. You shouldn't have to context-switch to a separate dashboard, copy-paste keywords into a spreadsheet, or hire a consultant to understand why your app isn't ranking.&lt;/p&gt;

&lt;p&gt;Ask your AI. Get a structured audit. Fix the highest-impact issues. Ship the update with Expo’s services.&lt;/p&gt;

&lt;p&gt;The entire loop - build, ship, optimize, iterate - now lives in one environment. Expo already removed the friction from shipping. I hope these skills remove the friction from being found.&lt;/p&gt;

&lt;p&gt;Here is the repo: &lt;a href="http://github.com/Eronred/aso-skills" rel="noopener noreferrer"&gt;github.com/Eronred/aso-skills&lt;/a&gt;&lt;/p&gt;

</description>
      <category>expo</category>
      <category>mobile</category>
      <category>javascript</category>
    </item>
    <item>
      <title>How to keep your OTA updates lean and fast</title>
      <dc:creator>Dan</dc:creator>
      <pubDate>Sun, 17 May 2026 16:32:20 +0000</pubDate>
      <link>https://dev.to/expo/how-to-keep-your-ota-updates-lean-and-fast-3afn</link>
      <guid>https://dev.to/expo/how-to-keep-your-ota-updates-lean-and-fast-3afn</guid>
      <description>&lt;p&gt;&lt;em&gt;Originally published on &lt;a href="https://expo.dev/blog/how-to-keep-your-ota-updates-lean-and-fast" rel="noopener noreferrer"&gt;expo.dev/blog&lt;/a&gt; by Jacob Clausen.&lt;/em&gt;&lt;/p&gt;




&lt;p&gt;Have you ever shipped a critical fix to your entire user base within minutes of merging the PR - a straight highway from your fix to your users’ fingertips, no bureaucracy, no interruption to the user experience? That feeling never gets old.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://docs.expo.dev/eas-update/introduction/" rel="noopener noreferrer"&gt;EAS Update&lt;/a&gt; makes this possible, and once you’ve experienced it, it’s hard to imagine working without it. But publishing the fix is only half the story. Your users don’t benefit until it’s running on their devices. The faster that download completes, the sooner your fix is in their hands. And the leaner your updates are, the better the experience gets for everyone. Faster downloads, lower costs, and a smoother ride as your team and user base grow. In this guide, we’ll walk through how to keep your updates small, ship them with confidence, and get the most out of every push.&lt;/p&gt;

&lt;h2&gt;
  
  
  EAS Update pricing recap
&lt;/h2&gt;

&lt;p&gt;To get the most out of EAS Update, it helps to understand two concepts that shape how your updates are delivered and billed: Monthly Active Users (&lt;em&gt;MAUs&lt;/em&gt;) and bandwidth. Knowing how they work, and the things you can do to keep your updates lean, means faster downloads for your users and lower costs for you. This blog post assumes you’re already familiar with what EAS Update is and what &lt;a href="https://docs.expo.dev/eas-update/introduction/#when-to-use-eas-update" rel="noopener noreferrer"&gt;scenarios it’s useful for&lt;/a&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Monthly Active Users (MAUs)
&lt;/h3&gt;

&lt;p&gt;A Monthly Active User (&lt;em&gt;MAU&lt;/em&gt;) is a unique user who downloads at least one update via EAS Update within a single billing period. No matter how many updates they download that month, they still count as one MAU. And if a user checks for updates but nothing new is available (&lt;em&gt;so no download happens&lt;/em&gt;), they’re not counted at all.&lt;/p&gt;

&lt;p&gt;Uninstalling and reinstalling the app will count as a separate MAU the next time they download an update. Similarly, the same person on two different devices would count as two MAUs. These edge cases probably won’t dramatically change your numbers, but they’re good to be aware of if your actual MAU count doesn't exactly match Play and App Store counts or metrics that consider more context about the unique identities of your users.&lt;/p&gt;

&lt;h3&gt;
  
  
  Bandwidth
&lt;/h3&gt;

&lt;p&gt;While every update a user downloads consumes bandwidth, the quotas on each &lt;a href="https://expo.dev/pricing" rel="noopener noreferrer"&gt;plan&lt;/a&gt; are generous, and most teams stay comfortably within their plan's allocation. Actual bandwidth usage tends to be much lower than you might expect, thanks to factors like &lt;a href="https://docs.expo.dev/eas-update/estimate-bandwidth/" rel="noopener noreferrer"&gt;compression&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The size of that download depends on what changed. For example, if only your JavaScript was updated, that’s all the user downloads. Assets already on the device from the original build (&lt;em&gt;or from a previous update&lt;/em&gt;) &lt;a href="https://docs.expo.dev/billing/usage-based-pricing/#how-to-optimize-update-usage" rel="noopener noreferrer"&gt;aren’t re-downloaded&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;That number is often smaller than you’d think: if you publish three updates in a week and a user only opens your app once that week, they download one update - not three. Only the &lt;a href="https://docs.expo.dev/eas-update/how-it-works/#practical-overview" rel="noopener noreferrer"&gt;latest update is downloaded&lt;/a&gt;, and the rest are skipped. From both a speed and bandwidth perspective, this is great - your users aren’t downloading more than they need to, which means updates are delivered faster and you’re only paying for what’s actually being used.&lt;/p&gt;

&lt;p&gt;That said, keeping your updates lean is still worth doing for a bunch of reasons beyond billing: faster downloads, less data usage for your users, and a snappier experience all around. More about this later.&lt;/p&gt;

&lt;p&gt;One thing we’re really excited about: with SDK 55, you can opt in to &lt;a href="https://docs.expo.dev/eas-update/bundle-diffing/" rel="noopener noreferrer"&gt;Hermes bytecode diffing&lt;/a&gt; (&lt;em&gt;currently in beta, please check it out!&lt;/em&gt;). Instead of downloading a full JavaScript bundle, the client applies a binary diff to what’s already installed. This can reduce download sizes significantly, meaning your users get updates faster and you can ship more frequently. It’s one of the ways we’re actively working to make updates both cheaper to deliver and better for your users.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why smaller updates matter
&lt;/h2&gt;

&lt;p&gt;The smaller your updates are, the faster they download for your users - and the less bandwidth each update consumes, both for your EAS Update usage and for your users on cellular or limited data plans. Smaller bundles also mean faster builds, and when your app loads an update on launch, a leaner bundle means a snappier startup. And if your bundle gets large enough, you might even notice it during development - live reload can start to feel slow when it has to process a big bundle on every change. Here are some techniques worth knowing about.&lt;/p&gt;

&lt;h3&gt;
  
  
  Optimize your assets
&lt;/h3&gt;

&lt;p&gt;Images can add up quickly in your update size, so it’s worth making sure they're optimized before you ship. Compressing your images where possible can make a meaningful difference - often with little to no visible quality loss. The smaller your images, the faster your updates download and the less data your users consume.&lt;/p&gt;

&lt;h3&gt;
  
  
  Let your assets be assets
&lt;/h3&gt;

&lt;p&gt;When an image is a proper asset file, it gets downloaded once (&lt;em&gt;either through a build or an update&lt;/em&gt;) and stays on the device. Future updates skip it entirely if it hasn’t changed. But when assets are inlined in your JavaScript (like for example base64-encoded images), they’re part of the bundle itself, so they come along for the ride on every update.&lt;/p&gt;

&lt;p&gt;For images that change frequently or live outside your bundle entirely, serving them from a CDN paired with &lt;a href="https://docs.expo.dev/versions/latest/sdk/image/" rel="noopener noreferrer"&gt;expo-image&lt;/a&gt; is worth considering. Its default caching policy persists images to disk on first load, so they behave just like bundled assets after that (&lt;em&gt;downloaded once, reused across app restarts&lt;/em&gt;) without adding any weight to your updates.&lt;/p&gt;

&lt;h3&gt;
  
  
  Choose which assets go into your updates
&lt;/h3&gt;

&lt;p&gt;Not every asset in your project needs to be delivered through updates. With &lt;a href="https://docs.expo.dev/eas-update/asset-selection/" rel="noopener noreferrer"&gt;asset selection&lt;/a&gt;, you can specify exactly which assets should be included using file patterns in your app config. Everything else stays in the native build and never gets downloaded from the update server.&lt;/p&gt;

&lt;p&gt;For example, if only the images in your app/images directory change between releases, you can limit your updates to just those:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"expo"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"updates"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"assetPatternsToBeBundled"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="s2"&gt;"app/images/**/*.png"&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Once you’ve configured your patterns, run &lt;code&gt;npx expo-updates assets:verify&lt;/code&gt; before publishing. This ensures that all required assets will be included when you publish an update - assets that fall through the cracks won't be available, which can cause unexpected behavior or crashes. Check out the &lt;a href="https://docs.expo.dev/eas-update/asset-selection/#verifying-that-an-update-includes-all-required-app-assets" rel="noopener noreferrer"&gt;docs&lt;/a&gt; for more details.&lt;/p&gt;

&lt;h3&gt;
  
  
  Submit to the app stores regularly
&lt;/h3&gt;

&lt;p&gt;When you submit a new build to the app stores, it includes all your latest assets. That means any OTA updates you publish after that only need to include what’s changed since the build, so users download less. If you’ve recently added large or multiple new assets, shipping a new build is a good way to &lt;a href="https://docs.expo.dev/eas-update/optimize-assets/#further-considerations" rel="noopener noreferrer"&gt;keep your next updates lean&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;One approach that works well is pairing a regular binary release cadence (&lt;em&gt;say, monthly&lt;/em&gt;) with OTA updates for changes in between. Your users get improvements more frequently, and each new binary resets the asset baseline for your subsequent updates.&lt;/p&gt;

&lt;h3&gt;
  
  
  Keep your JavaScript bundle in check
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmou1urgwtqsgbwktb0h7.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmou1urgwtqsgbwktb0h7.jpg" alt="OTA Update optimization" width="800" height="535"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Your JavaScript bundle is part of every update you publish. Tools like &lt;a href="https://docs.expo.dev/distribution/app-size/" rel="noopener noreferrer"&gt;Expo Atlas&lt;/a&gt; give you a visual breakdown of your bundle, showing exactly how much space each dependency takes up. It can be a real eye-opener - you might discover a library you imported for a single utility function is pulling in way more than you expected, or spot a dependency you stopped using but never removed.&lt;/p&gt;

&lt;p&gt;You can try it right now with your local dev server. Start your app with Atlas enabled:&lt;/p&gt;

&lt;p&gt;EXPO_ATLAS=true npx expo start&lt;/p&gt;

&lt;p&gt;Then press &lt;code&gt;shift + m&lt;/code&gt; in the terminal running the dev server to open the dev tools plugin menu and launch Atlas.&lt;/p&gt;

&lt;h2&gt;
  
  
  Shipping updates efficiently
&lt;/h2&gt;

&lt;p&gt;So far we’ve covered how to keep your updates lean. But the way you ship updates matters too. Rollouts give you more control over how updates reach your users, and using updates for internal testing can save you time and build credits.&lt;/p&gt;

&lt;h3&gt;
  
  
  Use rollouts for production updates
&lt;/h3&gt;

&lt;p&gt;When you publish an update, it’s available to your entire user base by default. Every update your users download counts toward your bandwidth usage, so rollouts are a natural way to be efficient: start with a small group, make sure everything looks good, and then roll it out to everyone.&lt;/p&gt;

&lt;h3&gt;
  
  
  Use updates for internal testing and PR previews
&lt;/h3&gt;

&lt;p&gt;During development, getting changes in front of your team for review often means creating a new build. But for changes that don’t involve native code, an OTA update does the same job - and it takes only seconds. Your team can &lt;a href="https://docs.expo.dev/eas-update/preview/" rel="noopener noreferrer"&gt;preview&lt;/a&gt; changes directly on a &lt;a href="https://docs.expo.dev/develop/development-builds/introduction/" rel="noopener noreferrer"&gt;development build&lt;/a&gt; they already have installed, or even from a &lt;a href="https://expo.dev/blog/feature-previews-from-pull-requests" rel="noopener noreferrer"&gt;pull request preview&lt;/a&gt; that’s generated automatically.&lt;/p&gt;

&lt;p&gt;The more of your review and iteration cycle that happens through updates rather than builds, the less time you spend waiting around before anyone can look at a change. Your team can have the latest version on their device in seconds, which means the feedback loop opens up much earlier in the process. That adds up fast when you’re iterating on a feature, and you’re saving build credits along the way. And since it’s just your team downloading these updates, the MAU and bandwidth cost is practically zero, making it one of the best value-for-effort wins on your plan.&lt;/p&gt;

&lt;h2&gt;
  
  
  Keeping track of your usage
&lt;/h2&gt;

&lt;p&gt;Everything we’ve covered so far (&lt;em&gt;keeping updates lean, using rollouts, leveraging updates for internal testing&lt;/em&gt;) all contributes to getting more value out of your EAS Update plan. But it’s also nice to know where you can see how things are going.&lt;/p&gt;

&lt;h3&gt;
  
  
  Monitor your usage in the dashboard
&lt;/h3&gt;

&lt;p&gt;Expo provides a usage overview on your account’s &lt;a href="https://docs.expo.dev/billing/manage/" rel="noopener noreferrer"&gt;Billing&lt;/a&gt; and &lt;a href="https://expo.dev/accounts/%5Baccount%5D/settings/usage" rel="noopener noreferrer"&gt;Usage&lt;/a&gt; pages. There you’ll find a summary of your EAS Update usage: how many MAUs have downloaded updates and how much bandwidth has been consumed during the current billing cycle (&lt;em&gt;or given time period&lt;/em&gt;). It’s a handy way to stay informed, especially if you’re curious how your numbers look after a big release.&lt;/p&gt;

&lt;h3&gt;
  
  
  Use the pricing calculator to find the right plan
&lt;/h3&gt;

&lt;p&gt;If you’re trying to figure out which subscription plan fits your needs, the &lt;a href="https://expo.dev/pricing#update" rel="noopener noreferrer"&gt;pricing calculator&lt;/a&gt; on the Expo website can help. Adjust the sliders for your expected MAU count, builds, and CI/CD minutes, and it’ll recommend a plan - and if your numbers go beyond what’s included in that plan, it’ll show you the estimated cost of that extra usage too.&lt;/p&gt;

&lt;h3&gt;
  
  
  Pick the plan that fits today
&lt;/h3&gt;

&lt;p&gt;You don’t need to have everything figured out before choosing a plan. Start with what fits your current needs - you won’t hit a wall if your app grows faster than expected. Every plan scales naturally with your usage, and you can move between plans as your needs change. Expo’s pricing is designed to grow with you, not get in the way. EAS Update is available on every plan, including the free plan, so you can try it out without any commitment.&lt;/p&gt;

&lt;h2&gt;
  
  
  Wrap-up
&lt;/h2&gt;

&lt;p&gt;At the end of the day, EAS Update gives you a pretty sweet deal: ship updates to your users in seconds, iterate faster with your team, and scale at your own pace. Leaner updates, rollouts, and a few of the techniques we covered are all it takes to deliver a faster experience for your users while getting more value out of your plan.&lt;/p&gt;

&lt;p&gt;Ready to get started? &lt;a href="https://docs.expo.dev/eas-update/getting-started/" rel="noopener noreferrer"&gt;Set up EAS Update&lt;/a&gt; in your project - it only takes a few minutes to set up, and you can start shipping updates right away. If you want to dive deeper into any of the topics we covered, the &lt;a href="https://docs.expo.dev/eas-update/introduction/" rel="noopener noreferrer"&gt;EAS Update docs&lt;/a&gt; are a great next step. We’d love to hear about your success story with EAS Update too!&lt;/p&gt;

</description>
      <category>reactnative</category>
      <category>expo</category>
      <category>otaupdates</category>
    </item>
    <item>
      <title>Introducing EAS Hosting: Simplified deployment for modern React apps</title>
      <dc:creator>Expo Team</dc:creator>
      <pubDate>Tue, 14 Jan 2025 15:40:31 +0000</pubDate>
      <link>https://dev.to/expo/introducing-eas-hosting-simplified-deployment-for-modern-react-apps-olh</link>
      <guid>https://dev.to/expo/introducing-eas-hosting-simplified-deployment-for-modern-react-apps-olh</guid>
      <description>&lt;p&gt;From weather apps, and commerce websites, to AI-powered chat apps, most modern applications today need reliable servers. That's why today we're introducing &lt;strong&gt;EAS Hosting&lt;/strong&gt; for instantly deploying and scaling universal API routes, React websites, and more!&lt;/p&gt;

&lt;h2&gt;
  
  
  The Challenge of Universal App Deployment
&lt;/h2&gt;

&lt;p&gt;Many massive companies such as Netflix, Meta, and Apple use server-driven UI in their native apps. But building a server-driven application is extremely challenging and simply out of reach for most developers. Our goal with &lt;strong&gt;Expo Router&lt;/strong&gt; has been to solve this problem and enable anyone to build and scale world-class server-driven apps for Android, iOS, and web using the same codebase.&lt;/p&gt;

&lt;p&gt;To this end, we've introduced &lt;a href="https://docs.expo.dev/router/reference/api-routes/" rel="noopener noreferrer"&gt;API Routes&lt;/a&gt; that can be used to create server endpoints for your app, &lt;a href="https://docs.expo.dev/guides/environment-variables/" rel="noopener noreferrer"&gt;secure environment variables&lt;/a&gt;, and static generation for web pages, all building toward &lt;a href="https://docs.expo.dev/guides/server-components/" rel="noopener noreferrer"&gt;universal React Server Components&lt;/a&gt;. While all these features work great on a local dev server, deployment has become more challenging.&lt;/p&gt;

&lt;p&gt;There are many full-stack problems to consider when building a modern application. We've historically recommended deploying Expo websites and universal API routes to traditional hosting services that are focused only on websites. But hosting services for websites traditionally don’t integrate with the problems native apps face.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;New versions of your servers may need to be deployed while new versions of your native app are being published to app stores.&lt;/li&gt;
&lt;li&gt;Different versions of your native app may need to have their requests routed to different versions of your server.&lt;/li&gt;
&lt;li&gt;Observability of servers for critical metrics, such as feature adoption by platform, becomes more important for Expo native apps.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;With &lt;strong&gt;EAS Hosting&lt;/strong&gt;, in conjunction with &lt;strong&gt;EAS Workflows&lt;/strong&gt;, we’re providing an end-to-end deployment solution that just works across all platforms, and stays working as you scale.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to Get Started with EAS Hosting
&lt;/h2&gt;

&lt;p&gt;First, ensure you’re using the latest version of &lt;strong&gt;EAS CLI&lt;/strong&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm i &lt;span class="nt"&gt;-g&lt;/span&gt; eas-cli
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then simply bundle your app with Expo CLI, deploy your website and server code worldwide with a single EAS command, and get a preview URL immediately:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx expo &lt;span class="nb"&gt;export&lt;/span&gt; &lt;span class="nt"&gt;-p&lt;/span&gt; web
eas deploy
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's it! Your website and API routes are now live with a beautiful .expo.app URL that you can share with anyone. (For an example Expo web deployment, visit: &lt;a href="https://bacon.expo.app" rel="noopener noreferrer"&gt;https://bacon.expo.app&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;Add environment variables to your .env file, and these will securely reside on the server-side for use in API routes and React Server Functions, keeping them out of your client code.&lt;/p&gt;

&lt;p&gt;By visiting the EAS dashboard, you can monitor your deployments and see helpful telemetry. Server errors are automatically aggregated and can be linked to for triaging!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fa5m2czen2kvf78892t8w.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fa5m2czen2kvf78892t8w.png" alt=" " width="800" height="584"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Here's a comprehensive video demonstration of EAS Hosting that covers deployment, assigning aliases, using API routes, looking up request logs, managing environment variables, and automating deployments with Workflows:  &lt;iframe src="https://www.youtube.com/embed/NaKsfWciJLo"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>reactjsdevelopment</category>
      <category>reactnative</category>
      <category>react</category>
    </item>
    <item>
      <title>Fingerprint your native runtime with @expo/fingerprint</title>
      <dc:creator>Expo Team</dc:creator>
      <pubDate>Tue, 06 Feb 2024 23:47:00 +0000</pubDate>
      <link>https://dev.to/expo/fingerprint-your-native-runtime-with-expofingerprint-13hb</link>
      <guid>https://dev.to/expo/fingerprint-your-native-runtime-with-expofingerprint-13hb</guid>
      <description>&lt;p&gt;At Expo, we’re always looking to find systematic solutions to problems that developers encounter when building apps with React Native. There’s a set of time-consuming questions related to the native project runtime that comes up again and again, and up until now, there hasn’t been a good systematic approach to answering them.&lt;/p&gt;

&lt;p&gt;The questions go something like this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Does a pull request include native code changes and need to initiate a new build for testing?&lt;/li&gt;
&lt;li&gt;Is my update compatible with the runtime in my production app? Or will it crash the app?&lt;/li&gt;
&lt;li&gt;Does a project require a development build, or can I experiment with it in Expo Go?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;While these issues may seem quite different initially, on closer examination they all come down to one key problem: "Given a project, can we deterministically generate a hash, identity, or fingerprint that represents its unique native characteristics?"&lt;/p&gt;

&lt;h2&gt;
  
  
  Meet @expo/fingerprint
&lt;/h2&gt;

&lt;p&gt;Now, by running &lt;code&gt;npx @expo/fingerprint@latest /path/to/yourProject&lt;/code&gt;, you can get a full picture of your project's native setup. &lt;code&gt;@expo/fingerprint&lt;/code&gt; also comes with an API, so you can integrate this tool programmatically into your own projects.&lt;/p&gt;

&lt;p&gt;We think this is a massive milestone for the whole React Native ecosystem and it's already unlocking some super interesting use cases that are not immediately obvious. Krzysztof Magiera is using it to make startup of his RN IDE plugin for vscode much faster.&lt;/p&gt;

&lt;p&gt;Here’s an example of what the fingerprint looks like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;{
  "sources": [
    {
      "type": "file",
      "filePath": "app.json",
      "reasons": ["expoConfig"],
      "hash": "378083de0c6e6bb6caf8fb72df658b0b26fb29ef"
    },
    {
      "type": "file",
      "filePath": "eas.json",
      "reasons": ["easBuild"],
      "hash": "f723802b6ea916d1a6c4767b2299cc81ddb22eb4"
    },
    {
      "type": "dir",
      "filePath": "node_modules/expo",
      "reasons": ["expoAutolinkingIos", "expoAutolinkingAndroid", "bareRncliAutolinking"],
      "hash": "1faee4057fa943300905750b51c3b0cbf05f4b0d"
    }
  ],
  "hash": "bf8a3b08935f056270b1688333b02f1ef5fa25bf"
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Developers can represent the entire native state of their project with a single, succinct hash value, which is immensely valuable for easily detecting native changes. But there are several other important considerations that we accounted for in order to maximize the usefulness in various use cases:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Speed&lt;/strong&gt;: we’ve tried to make this tool as fast as possible so you can run it often, and we’ll continue to push on that to make it even faster.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Precision&lt;/strong&gt;: we should only consider aspects of the project that are actually relevant (it can’t just be a hash of the entire project and all of the .DS_Store and .swp files or the value would not be useful).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Support for diffing&lt;/strong&gt;: You should be able to compare fingerprints to determine what’s different between them.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Customizability&lt;/strong&gt;: The API exposes some options that you can use to customize for your workflows — most notably, you can either add extra files to hashing or exclude files. We also read the .fingerprintignore file from your project root, which works similarly to .gitignore.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try out @expo/fingerprint 🪄
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;@expo/fingerprint&lt;/code&gt; fully supports projects made with Expo CLI and also works with any bare React Native apps, whether they use Expo tools or not. Follow these steps to see it in action:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Generate a fingerprint JSON file: &lt;code&gt;run npx @expo/fingerprint@latest /path/to/yourProject &amp;gt; fingerprint.json&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Change your native runtime: one easy way to do this is to install an npm package with native dependencies, for example: &lt;code&gt;npx expo install expo-camera&lt;/code&gt; or &lt;code&gt;npm install react-native-vision-camera&lt;/code&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Diff the fingerprint: run &lt;code&gt;npx @expo/fingerprint@latest /path/to/yourProject fingerprint.json&lt;/code&gt;. Notice that it will identify what changed, for example if you installed expo-camera, you will see something like this:&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[
  {
    "type": "dir",
    "filePath": "../../node_modules/expo-camera/android",
    "reasons": [
      "expoAutolinkingAndroid"
    ],
    "hash": "7682b28ed4ef8356faa5d9ad5b71e76e53198375"
  },
  {
    "type": "dir",
    "filePath": "../../node_modules/expo-camera/ios",
    "reasons": [
      "expoAutolinkingIos"
    ],
    "hash": "a80c2b1abb73157b772a8d0a351920465894bb0d"
  },
    // the rest is redacted for brevity
]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You can use this API programmatically with the &lt;code&gt;Fingerprint.diffFingerprintChangesAsync(fingerprint, projectRoot)&lt;/code&gt; function.&lt;/p&gt;

&lt;h2&gt;
  
  
  What’s next: collect feedback and refine workflows
&lt;/h2&gt;

&lt;p&gt;We think &lt;code&gt;@expo/fingerprint&lt;/code&gt; is really going to help with automating decisions like when you can safely send out updates and analyzing your team's pull-requests to rebuild the native app only when it’s really needed.&lt;/p&gt;

&lt;p&gt;Even though this is the first time we’re publicly talking about &lt;code&gt;@expo/fingerprint&lt;/code&gt;, we’ve already had some early adopters who have opened PRs / issues to help make the tool better accommodate their projects.&lt;/p&gt;

&lt;p&gt;We also know that the tool’s built-in opinions might not be perfect for every project. We want help from the community to test this tool thoroughly, and one way that we’ve made it very easy to do so is with our GitHub Actions integration, which is available now! (Blog post on github actions coming soon.)&lt;/p&gt;

&lt;h2&gt;
  
  
  Using @expo/fingerprint with EAS
&lt;/h2&gt;

&lt;p&gt;In the future, we plan to build first-class integration for &lt;code&gt;@expo/fingerprint&lt;/code&gt; into EAS services. You can use &lt;code&gt;@expo/fingerprint&lt;/code&gt; in your EAS projects today by generating your fingerprint with the CLI and populating your runtimeVersion field with it, then comparing that value with the value generated at the time when you would like to do an update or build. If you use GitHub Actions to kick off your builds and updates, then may also want to use the GitHub Actions integration!&lt;/p&gt;

</description>
      <category>reactnative</category>
      <category>javascript</category>
      <category>programming</category>
      <category>native</category>
    </item>
    <item>
      <title>Expo SDK 50 Release 🚀</title>
      <dc:creator>Expo Team</dc:creator>
      <pubDate>Thu, 18 Jan 2024 23:38:27 +0000</pubDate>
      <link>https://dev.to/expo/expo-sdk-50-release-do</link>
      <guid>https://dev.to/expo/expo-sdk-50-release-do</guid>
      <description>&lt;p&gt;Today we’re announcing the release of Expo SDK 50. &lt;/p&gt;

&lt;p&gt;SDK 50 is a very chunky and ambitious release that includes React Native 0.73. Thank you to all the contributors and to everyone who helped with beta testing.&lt;/p&gt;

&lt;p&gt;Learn more in the &lt;a href="https://expo.dev/changelog" rel="noopener noreferrer"&gt;full article on the Expo Changelog&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;And please join our &lt;a href="https://www.youtube.com/live/cKFSVUo3AnI?si=RY5xZ4n6rmxgtNmH" rel="noopener noreferrer"&gt;live stream on January 31st&lt;/a&gt; at 10:30am PT for a walkthrough of what’s new. &lt;/p&gt;

</description>
      <category>react</category>
      <category>reactnative</category>
      <category>expo</category>
      <category>universalapps</category>
    </item>
    <item>
      <title>Introducing EAS</title>
      <dc:creator>Expo Team</dc:creator>
      <pubDate>Wed, 10 Nov 2021 22:23:13 +0000</pubDate>
      <link>https://dev.to/expo/introducing-eas-c63</link>
      <guid>https://dev.to/expo/introducing-eas-c63</guid>
      <description>&lt;p&gt;&lt;em&gt;EAS stands for Expo Application Services, the fastest way to get your Expo app from development to the app stores.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Over the last few months, we've been previewing two new services: EAS Build and EAS Submit, the first services available from Expo Application Services (EAS).&lt;/p&gt;

&lt;p&gt;Today, we're happy to announce that EAS is moving out of preview and into general availability!&lt;/p&gt;

&lt;h1&gt;
  
  
  What is EAS?
&lt;/h1&gt;

&lt;p&gt;Expo is our open-source project: &lt;a href="https://blog.expo.dev/exponent-is-free-as-in-and-as-in-1d6d948a60dc" rel="noopener noreferrer"&gt;it will always be both open source and free&lt;/a&gt; - forever!&lt;/p&gt;

&lt;p&gt;Expo Application Services (EAS) are our hosted cloud services built for both Expo and React Native. With EAS Build and Submit, we make it faster and easier for you to get your app from development into the app stores.&lt;/p&gt;

&lt;p&gt;To learn more about EAS, head over to &lt;a href="http://expo.dev/eas" rel="noopener noreferrer"&gt;expo.dev/eas&lt;/a&gt; or check out our &lt;a href="https://docs.expo.dev/eas/" rel="noopener noreferrer"&gt;docs&lt;/a&gt;.&lt;/p&gt;

&lt;h1&gt;
  
  
  EAS Build and Submit
&lt;/h1&gt;

&lt;p&gt;EAS Build takes everything good about the classic Expo build service (&lt;code&gt;expo build:[android|ios]&lt;/code&gt;) and &lt;a href="https://blog.expo.dev/expo-managed-workflow-in-2021-5b887bbf7dbb" rel="noopener noreferrer"&gt;leaves all of its limitations behind&lt;/a&gt;. EAS Build raises the ceiling on what's possible with Expo managed workflow apps by adding support for &lt;a href="https://blog.expo.dev/expo-managed-workflow-in-2021-d1c9b68aa10" rel="noopener noreferrer"&gt;custom native code&lt;/a&gt; and for building "&lt;a href="https://blog.expo.dev/introducing-custom-development-clients-5a2c79a9ddf8" rel="noopener noreferrer"&gt;Development clients&lt;/a&gt;" in the cloud. The service works great with both managed and bare Expo apps, or any React Native app you throw at it. You can also &lt;a href="https://docs.expo.dev/build-reference/local-builds/" rel="noopener noreferrer"&gt;run it locally or on your own infrastructure&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;You can build your app with EAS Build and automatically submit to app stores with EAS Submit in minutes or less, thanks to &lt;a href="https://docs.expo.io/app-signing/managed-credentials/" rel="noopener noreferrer"&gt;automatically managed app signing credentials&lt;/a&gt;, &lt;a href="https://docs.expo.dev/build/automating-submissions/" rel="noopener noreferrer"&gt;automatic submissions&lt;/a&gt;, and defaults that &lt;em&gt;just work&lt;/em&gt; for most Expo and React Native apps.&lt;/p&gt;

&lt;p&gt;Internal distribution makes it easy to share test builds with colleagues and friends using &lt;a href="https://expo.canny.io/feature-requests/p/iosbuild-with-adhoc-provision-profile" rel="noopener noreferrer"&gt;ad hoc provisioning&lt;/a&gt; or &lt;a href="https://developer.apple.com/programs/enterprise/" rel="noopener noreferrer"&gt;enterprise provisioning&lt;/a&gt; on iOS and APK side-loading on Android.&lt;/p&gt;

&lt;p&gt;Everything works great &lt;a href="https://docs.expo.dev/accounts/account-types/" rel="noopener noreferrer"&gt;for your entire team&lt;/a&gt; out of the box and can be &lt;a href="https://docs.expo.dev/build/building-on-ci/" rel="noopener noreferrer"&gt;integrated into your existing CI/CD workflows&lt;/a&gt;.&lt;/p&gt;

&lt;h1&gt;
  
  
  New EAS plans
&lt;/h1&gt;

&lt;p&gt;With our EAS General Availability release, we are introducing three new plans: &lt;a href="https://expo.dev/pricing" rel="noopener noreferrer"&gt;Free, Production, and Enterprise&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;All our EAS services are now available under the &lt;a href="https://expo.dev/pricing" rel="noopener noreferrer"&gt;Free&lt;/a&gt; plan, which is a great option for pre-revenue startups and proofs-of-concept, as well as hobby and student projects.&lt;/p&gt;

&lt;p&gt;The &lt;a href="https://expo.dev/pricing" rel="noopener noreferrer"&gt;Production&lt;/a&gt; plan is for any commercial app in production generating more than $1,500 per month in revenue, or any team using EAS in a serious way. With the Production plan, you get priority for your builds, additional build concurrencies, and access to add-ons as well as to the Expo Professionals forum. The Production plan is $99/month.&lt;/p&gt;

&lt;p&gt;The &lt;a href="https://expo.dev/pricing" rel="noopener noreferrer"&gt;Enterprise&lt;/a&gt; plan is for teams that want to work closely with Expo on their apps. Enterprise plans include more of everything in the Production plan and gives access to add-on features like SLAs and dedicated support.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Folks currently on the EAS Priority plan will be able to stay on that plan until they're ready to switch!&lt;/em&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Enterprise support add-on
&lt;/h1&gt;

&lt;p&gt;We often get requests for additional levels of support and are happy to announce our Enterprise Support plan that's now available as an add-on to our Enterprise plan. &lt;/p&gt;

&lt;p&gt;With Enterprise Support you'll get direct access to the Expo team for questions and troubleshooting via a dedicated Slack channel. To learn more, check out our &lt;a href="https://www.expo.dev/eas/enterprise-support" rel="noopener noreferrer"&gt;Enterprise Support page&lt;/a&gt;. &lt;/p&gt;

&lt;h1&gt;
  
  
  Get started with EAS - free!
&lt;/h1&gt;

&lt;p&gt;All Expo accounts get access to the free EAS plan, so everyone can now try out EAS Build and Submit. &lt;/p&gt;

&lt;p&gt;To learn more, look at &lt;a href="https://docs.expo.dev/build/setup/" rel="noopener noreferrer"&gt;creating your first build&lt;/a&gt;.&lt;/p&gt;

&lt;h1&gt;
  
  
  Thank you!
&lt;/h1&gt;

&lt;p&gt;We want to extend a huge thank you to all the developers who participated in the preview and provided feedback for EAS Build and Submit. That feedback was a tremendous resource whether it was helping to track down a tricky bug, uncovering new use cases, or suggesting new improvements and functionality.&lt;/p&gt;

&lt;p&gt;In total, developers participating in the EAS preview period built over 100,000 successful builds of their apps - with over 80,000 app store submissions! Hats off to all our preview developers!&lt;/p&gt;

&lt;p&gt;Of course, just because we're out of the preview period, &lt;a href="https://docs.expo.dev/build-reference/limitations/" rel="noopener noreferrer"&gt;that doesn't mean we're done&lt;/a&gt;! We'll continue to add great new features and services - so please stay tuned and keep that feedback coming in!&lt;/p&gt;

</description>
      <category>mobile</category>
      <category>reactnative</category>
      <category>programming</category>
      <category>react</category>
    </item>
    <item>
      <title>Expo SDK 41</title>
      <dc:creator>Expo Team</dc:creator>
      <pubDate>Fri, 23 Apr 2021 23:02:17 +0000</pubDate>
      <link>https://dev.to/expo/expo-sdk-41-1f2j</link>
      <guid>https://dev.to/expo/expo-sdk-41-1f2j</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmdqsbfehonsots7vahff.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmdqsbfehonsots7vahff.png" alt="Stylized number 41" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Today we're announcing the release of &lt;strong&gt;Expo SDK 41&lt;/strong&gt;. SDK 41 includes React Native 0.63, the same version as in SDK 40. Thank you to everyone that [helped with beta testing[(&lt;a href="https://blog.expo.io/expo-sdk-41-beta-is-now-available-958edcd78991" rel="noopener noreferrer"&gt;https://blog.expo.io/expo-sdk-41-beta-is-now-available-958edcd78991&lt;/a&gt;). (&lt;em&gt;Curious why we didn't include the recently released React Native 0.64? &lt;a href="https://expo.fyi/react-native-releases" rel="noopener noreferrer"&gt;Learn more&lt;/a&gt;.&lt;/em&gt;)&lt;/p&gt;

&lt;h1&gt;
  
  
  ⚡️ Highlights
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Android apps now target Android R (11 / SDK 30)&lt;/strong&gt;. This comes with some significant changes for location permissions, media library (related to &lt;a href="https://android-doc.github.io/guide/topics/providers/document-provider.html" rel="noopener noreferrer"&gt;StorageAccessFramework&lt;/a&gt;), and constants. Please note that these changes also impact SDK &amp;lt;= 40 projects in Expo Go, but they will not impact SDK &amp;lt;= 40 standalone apps. Refer to &lt;a href="https://expo.fyi/android-r" rel="noopener noreferrer"&gt;expo.fyi/android-r&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The recommended version of react-native-reanimated has been updated to v2&lt;/strong&gt;. If you would like to use v2 features in your app, you need to add the &lt;a href="https://docs.swmansion.com/react-native-reanimated/docs/installation/#babel-plugin" rel="noopener noreferrer"&gt;Reanimated v2 Babel plugin&lt;/a&gt;. You can continue to use v1 features (eg: those used by React Navigation v5) without adding the new Babel plugin. Please note that if you use the new features from v2, you will not be able to use remote JS debugging in your app! If you use v2 APIs, JS debugging is only possible using Flipper and Hermes, which are not yet fully supported in the managed workflow. (&lt;em&gt;We plan to investigate integrating Hermes during the next SDK cycle, but we don't currently expect to have it ready for SDK 42.&lt;/em&gt;)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;lottie-react-native has been updated to the latest version (3.5.0)&lt;/strong&gt;. Your existing animations should continue to work as before, but if you encounter any issues please &lt;a href="https://github.com/expo/expo/issues" rel="noopener noreferrer"&gt;file an issue&lt;/a&gt; and share the animation file.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The new version of react-native-screens (v3) "enables screens" by default&lt;/strong&gt;. If you encounter any related issues, you can report the issue and opt out with &lt;code&gt;enableScreens(false)&lt;/code&gt;. Be sure to update to the latest v4 patch release of React Navigation if you use v4.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Improvements were made across the SDK to ensure compatibility with EAS Build&lt;/strong&gt;. A big part of this SDK has been making the necessary underlying changes to support EAS Build for managed projects. You can now use EAS Build with Expo managed apps to reduce the size of your standalone apps by up to 10x! &lt;a href="https://blog.expo.io/eas-build-april-preview-update-ebd7dff9dd25" rel="noopener noreferrer"&gt;Learn more about the latest EAS Build updates&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The expo package is now 93% smaller in production and better than ever&lt;/strong&gt;. We've simplified the experience so the &lt;code&gt;.expo&lt;/code&gt; extension is no longer needed (and so we removed it), and neither is the &lt;code&gt;--target bare|managed&lt;/code&gt; flag - updates will run in either context provided the native runtime is compatible. We've improved consistency across the managed and bare workflow, removed legacy code, and improved tree-shaking on the package using &lt;code&gt;@expo/metro-config&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;To see the full list of new features and fixes, refer to the &lt;a href="https://github.com/expo/expo/blob/master/CHANGELOG.md" rel="noopener noreferrer"&gt;changelog&lt;/a&gt;!&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  🏡 Expo Go
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;We changed sign in to use &lt;code&gt;expo-web-browser&lt;/code&gt; so we can leverage our &lt;a href="https://blog.expo.io/four-new-security-features-to-protect-your-expo-apps-cdf3e409a1b0" rel="noopener noreferrer"&gt;existing web auth flow with two-factor-authentication&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;You can now see &lt;a href="https://blog.expo.io/expo-organizations-a-simpler-way-to-work-as-a-team-5dc244f0efcb" rel="noopener noreferrer"&gt;teams and organizations&lt;/a&gt; that you are a part of in the &lt;em&gt;Profile&lt;/em&gt; tab, and their associated projects show up in your recent projects below.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwie90orw7gnupg8pq5u8.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwie90orw7gnupg8pq5u8.png" alt="Accounts &amp;amp; Organizations screenshot on mobile phones" width="800" height="400"&gt;&lt;/a&gt;Notice the "Accounts &amp;amp; Organizations" section and the shared "Recent Projects" list below it.&lt;/p&gt;

&lt;h1&gt;
  
  
  🌐 Expo CLI
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Integrated Developer Tools&lt;/strong&gt;: Open the developer menu, inspect elements, and monitor performance all from the CLI. Just run &lt;code&gt;expo start&lt;/code&gt; then press "m" to toggle the dev menu, and "shift+M" to toggle the performance monitor or element inspector across native apps.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/iZ8FwgDy2Ek"&gt;
  &lt;/iframe&gt;It was either a heavily compressed but still 7mb gif or a YouTube video, so we went for the YouTube video.
&lt;br&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Force Reloading&lt;/strong&gt;: Shaking your devices every few minutes can get exhausting! Now you can reload connected phones, tablets, simulators, and browsers all by pressing "r" in the Terminal UI. This works across iOS, Android, web, and on physical devices.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/wIH0OEmLgy8"&gt;
  &lt;/iframe&gt;
&lt;br&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Automatic TypeScript setup&lt;/strong&gt;: Setting up TypeScript can be a pain, so we've completely automated it! Just create a blank &lt;code&gt;tsconfig.json&lt;/code&gt; and run &lt;code&gt;expo start&lt;/code&gt;, we'll take care of the rest! Learn more: &lt;a href="https://docs.expo.io/guides/typescript/" rel="noopener noreferrer"&gt;"TypeScript" in the Expo docs&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fneum1v776b28igfd16j7.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fneum1v776b28igfd16j7.gif" alt="GIF of following the instructions in a terminal window" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Vastly better errors&lt;/strong&gt;: No one likes errors - that's why in SDK 41 we've refined them to be as concise, and useful as possible! We only surface the most relevant stack traces and point to exactly where the error or warning is. We've also improved source maps, and muted generated code traces.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhmyabirypop0bk95ncma.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhmyabirypop0bk95ncma.png" alt="before and after screenshots of error log" width="799" height="567"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Debug your config&lt;/strong&gt;: The new &lt;code&gt;expo config&lt;/code&gt; command enables you to view the evaluated results of &lt;code&gt;app.config.js&lt;/code&gt; or &lt;code&gt;app.json&lt;/code&gt;. You can use &lt;code&gt;expo config --type public&lt;/code&gt; to see the app manifest used in &lt;code&gt;expo publish&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Better interactions with Apple Store Connect from your terminal&lt;/strong&gt;: Faster, smarter authentication, better error handling, and - for the first time ever - get full insight into complex issues right from the console. Where other tools &lt;code&gt;401&lt;/code&gt;, Expo CLI gives you links to resolve issues in seconds. Need to update your payment or accept a contract? Resolve in a couple clicks, and get back to developing incredible (or at least "good") apps!&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcfyffordonfzzjrxbmb9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcfyffordonfzzjrxbmb9.png" alt="A terminal window showing information about a rejected request from App Store Connect due to an expired Developer Program membership." width="799" height="412"&gt;&lt;/a&gt;A terminal window showing information about a rejected request from App Store Connect due to an expired Developer Program membership.&lt;br&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;The --config is flag deprecated&lt;/strong&gt;. We suggest using &lt;code&gt;app.config.js&lt;/code&gt; instead. The &lt;code&gt;--config&lt;/code&gt; flag will continue to be supported for existing use cases for the foreseeable future, but it will not be supported in some situations in bare workflow projects, and it will also not be supported on EAS Build. Learn more: &lt;a href="https://expo.fyi/config-flag-migration" rel="noopener noreferrer"&gt;Migrating away from &lt;code&gt;--config&lt;/code&gt; in Expo CLI&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The &lt;code&gt;--target flag&lt;/code&gt; is deprecated for SDK 41+&lt;/strong&gt;. This was used to provide slightly different behavior when in a managed or bare app environment, but it ended up being tricky to use because updates published with the &lt;code&gt;bare&lt;/code&gt; target could not run in Expo Go, and updates published with the &lt;code&gt;managed&lt;/code&gt; target could not run in a bare app. We now do any necessary adjustments to accommodate the environment at runtime, so an update bundle will work in either context, provided that the native runtime is compatible with the update.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Versioned Metro Config&lt;/strong&gt;: Rather than adding &lt;code&gt;@expo/metro-config&lt;/code&gt; to your &lt;code&gt;package.json&lt;/code&gt;, you can now import it through the expo package with the vendored &lt;code&gt;expo/metro-config&lt;/code&gt; import. This ensures that your project is always using a compatible version of the package. Learn More: &lt;a href="https://docs.expo.io/guides/customizing-metro/" rel="noopener noreferrer"&gt;Customizing Metro&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Introducing Config Plugins (beta)&lt;/strong&gt;: Config plugins are an important step towards making it possible for library authors to make their native modules part of the Expo ecosystem. This system is in beta, with a more stable release planned for SDK 42. Learn more: &lt;a href="https://docs.expo.io/guides/config-plugins/" rel="noopener noreferrer"&gt;Config Plugins&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  🏗 Deprecations, renamings, and removals
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Deprecated globals have been removed from the expo package&lt;/strong&gt;.As a result, &lt;code&gt;expo-linear-gradient&lt;/code&gt;, &lt;code&gt;expo-linking&lt;/code&gt;, &lt;code&gt;expo-location&lt;/code&gt;, &lt;code&gt;expo-permissions&lt;/code&gt;, and &lt;code&gt;expo-sqlite&lt;/code&gt; are no longer automatically installed in every project by default as dependencies of &lt;code&gt;expo&lt;/code&gt;. If you were depending on &lt;code&gt;global.expo.LinearGradient&lt;/code&gt; or similar, please install the respective package and import the API from there instead, eg: &lt;code&gt;import { LinearGradient } from 'expo-linear-gradient';&lt;/code&gt;. Refer to &lt;a href="http://expo.fyi/deprecated-globals" rel="noopener noreferrer"&gt;expo.fyi/deprecated-globals&lt;/a&gt; for more information.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Files with the .expo.* extension (eg: MyComponent.expo.js) are no longer recognized as source files.&lt;/strong&gt; If your project source code or dependencies include any files with the &lt;code&gt;.expo.*&lt;/code&gt; extension, &lt;code&gt;expo-cli&lt;/code&gt; will let you know when you upgrade. Refer to &lt;a href="//expo.fyi/expo-extension-migration"&gt;expo.fyi/expo-extension-migration&lt;/a&gt; for more information.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbp1jqobz7hzu1t6kd0ll.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbp1jqobz7hzu1t6kd0ll.png" alt="Terminal window showing a warning that projects with .expo.* file extensions are deprecated" width="800" height="446"&gt;&lt;/a&gt;We thought the .expo file extension was neat but it ended up not being necessary or particularly useful, and simplicity wins over neat things.&lt;br&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;expo-permissions has been deprecated in favor of module-specific permissions methods.&lt;/strong&gt; You should migrate from using &lt;code&gt;Permissions.askAsync&lt;/code&gt; and &lt;code&gt;Permissions.getAsync&lt;/code&gt; to the permissions methods exported by modules that require the permissions. For example: you should replace calls to &lt;code&gt;Permissions.askAsync(Permissions.CAMERA)&lt;/code&gt; with &lt;code&gt;Camera.requestPermissionsAsync()&lt;/code&gt;. There shouldn't be two ways to do an identical thing in a single SDK, and so we picked our preferred approach and are consolidating around it.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;@react-native-community/async-storage&lt;/code&gt; is now &lt;code&gt;@react-native-async-storage/async-storage&lt;/code&gt;&lt;/strong&gt;. AsyncStorage is next in the packages that are gradually migrating out of the &lt;code&gt;@react-native-community&lt;/code&gt; scope on npm (&lt;a href="https://github.com/react-native-community/discussions-and-proposals/blob/master/partners/0001-organization-repository-policy.md" rel="noopener noreferrer"&gt;more context on why this is happening available here&lt;/a&gt;). We will take care of switching the packages in your dependencies in &lt;code&gt;package.json&lt;/code&gt; when you run &lt;code&gt;expo upgrade&lt;/code&gt;, but after that you will need to either manually update your imports in your source code, or run &lt;code&gt;npx expo-codemod sdk41-async-storage [your-source-directory]&lt;/code&gt; to update it automatically.
Along with this superficial change in package names comes a fix for an issue that occurs when ejecting your project; more information in &lt;a href="https://github.com/expo/expo/issues/8220" rel="noopener noreferrer"&gt;this issue&lt;/a&gt; and these &lt;a href="https://github.com/react-native-async-storage/async-storage/pull/563" rel="noopener noreferrer"&gt;pull&lt;/a&gt; &lt;a href="https://github.com/react-native-async-storage/async-storage/pull/559" rel="noopener noreferrer"&gt;requests&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;@expo/metro-config&lt;/code&gt; is now vendored by the &lt;code&gt;expo&lt;/code&gt; package&lt;/strong&gt;. If your &lt;code&gt;metro.config.js&lt;/code&gt; uses &lt;code&gt;@expo/metro-config&lt;/code&gt;, you should switch over to importing it from the &lt;code&gt;expo&lt;/code&gt; package instead. Remove &lt;code&gt;@expo/metro-config&lt;/code&gt; from your &lt;code&gt;package.json&lt;/code&gt; dependencies and change your import in &lt;code&gt;metro.config.js&lt;/code&gt; from &lt;code&gt;@expo/metro-config&lt;/code&gt; to &lt;code&gt;expo/metro-config&lt;/code&gt;. Learn more: &lt;a href="https://docs.expo.io/guides/customizing-metro/" rel="noopener noreferrer"&gt;Customizing Metro&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Legacy Notifications API has been removed&lt;/strong&gt;.The legacy Notifications library (imported from the &lt;code&gt;expo&lt;/code&gt; package) has been deprecated since SDK 38, and is now fully removed in SDK 41. If you're still relying on this package, you should &lt;a href="https://github.com/expo/fyi/blob/master/LegacyNotifications-to-ExpoNotifications.md" rel="noopener noreferrer"&gt;upgrade to &lt;code&gt;expo-notifications&lt;/code&gt;&lt;/a&gt;, which has plenty of improvements and additional features. Learn more: &lt;a href="https://expo.fyi/LegacyNotifications-to-ExpoNotifications" rel="noopener noreferrer"&gt;How to migrate from Expo's LegacyNotifications to the new expo-notifications library&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;👋 iOS 10 support has been dropped - Expo SDK 41 supports iOS 11+&lt;/strong&gt;. More information on this from our &lt;a href="https://blog.expo.io/expo-sdk-40-is-now-available-d4d73e67da33" rel="noopener noreferrer"&gt;SDK 40 release notes&lt;/a&gt;:&lt;em&gt;iOS 10 is the last version of iOS that still supports 32-bit simulator builds (x86), and to keep Expo npm packages smaller, we plan to publish only 64-bit pre-build binaries for simulators (x64 and arm64). This has been past due - the last time we dropped an iOS version was over two years ago, when we dropped support for iOS 9 in September 2018. Apple no longer reports usage statistics for iOS 10 directly, but you can get a rough idea from reading the &lt;a href="https://developer.apple.com/support/app-store/" rel="noopener noreferrer"&gt;App Store - iOS and iPadOS usage table&lt;/a&gt; - 6% of all devices use iOS 11 or lower at the time of writing.&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;🟢 Node 10 support will be dropped soon from Expo CLI&lt;/strong&gt;.
It's not that we have anything against the number 10, but Node 10 is about to be replaced by Node 12 as the Maintenance LTS release.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;🧹 Dropped SDK 37; will drop SDK 38 next release&lt;/strong&gt;. We routinely drop SDK versions that have low usage in order to reduce the number of versions we need to support. This release sees the end of life for SDK 37. As usual, your standalone apps built with SDK 37 will continue to work; however, SDK 37 projects will no longer work within the latest version of Expo Go. If you want to re-run &lt;code&gt;expo build&lt;/code&gt;, then you'll need to upgrade from SDK 37, preferably to SDK 41 so you won't need to update again for a while (and also because each Expo version is better than the last!). &lt;strong&gt;Our next release is planned for June/July 2021 and, at that time, we'll be dropping support for SDK 38&lt;/strong&gt;. If your project is running on SDK 38, consider upgrading to a newer version in the coming months.&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  ➡️ Upgrading your app
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Managed workflow
&lt;/h2&gt;

&lt;p&gt;Here's how to upgrade your app to Expo SDK 41 from 40:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Update to the latest version of Expo CLI: &lt;code&gt;npm i -g expo-cli&lt;/code&gt;. &lt;a href="mailto:expo-cli@4.4.1"&gt;expo-cli@4.4.1&lt;/a&gt; or greater is required.&lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;expo upgrade&lt;/code&gt; in your project directory.&lt;/li&gt;
&lt;li&gt;If you are using &lt;code&gt;react-navigation&lt;/code&gt; v4, please be sure to update to the latest v4 patch release. This is required due to changes in the version of &lt;code&gt;react-native-screens&lt;/code&gt; included in SDK 41.&lt;/li&gt;
&lt;li&gt;Refer to the "Deprecations, renamings, and removals" section above for breaking changes that are most likely to impact your app.&lt;/li&gt;
&lt;li&gt;Make sure to check the &lt;a href="https://github.com/expo/expo/blob/master/CHANGELOG.md" rel="noopener noreferrer"&gt;changelog&lt;/a&gt; for all other breaking changes!&lt;/li&gt;
&lt;li&gt;Update the Expo app on your phones from the App Store / Google Play. expo-cli&lt;code&gt;will automatically update your apps in simulators if you delete the existing apps, or you can run&lt;/code&gt;expo client:install:ios&lt;code&gt;and&lt;/code&gt;expo client:install:android`.&lt;/li&gt;
&lt;li&gt;If you built a standalone app previously, &lt;a href="https://docs.expo.io/versions/latest/workflow/publishing/#limitations" rel="noopener noreferrer"&gt;remember&lt;/a&gt; that you'll need to create a new build in order to update the SDK version. Run &lt;code&gt;expo build:ios&lt;/code&gt; and/or &lt;code&gt;expo build:android&lt;/code&gt; when you are ready to do a new build for submission to stores.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Bare workflow
&lt;/h2&gt;

&lt;p&gt;The Bare workflow lets you operate independently of the Expo SDK cycle, updating RN versions and versions of individual Expo packages however and whenever you want. However, if you do stick roughly to Expo SDK versions, these steps will help you to upgrade to Expo SDK 41 from 40:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Install the latest version of CocoaPods - 1.10.0 or greater is required.&lt;/li&gt;
&lt;li&gt;Update to the latest version of Expo CLI: &lt;code&gt;npm i -g expo-cli&lt;/code&gt;. &lt;a href="mailto:expo-cli@4.4.1"&gt;expo-cli@4.4.1&lt;/a&gt; or greater is required.&lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;expo upgrade&lt;/code&gt; in your project directory.&lt;/li&gt;
&lt;li&gt;Update to &lt;code&gt;platform :ios, '11.0'&lt;/code&gt; in your Podfile.&lt;/li&gt;
&lt;li&gt;Update &lt;code&gt;compileSdkVersion&lt;/code&gt; and &lt;code&gt;targetSdkVersion&lt;/code&gt; to 30 in &lt;code&gt;android/build.gradle&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;If you are using &lt;code&gt;react-navigation&lt;/code&gt; v4, please be sure to update to the latest v4 patch release. This is required due to changes in the version of &lt;code&gt;react-native-screens&lt;/code&gt; included in SDK 41.&lt;/li&gt;
&lt;li&gt;Rebuild your native projects with &lt;code&gt;npm run ios&lt;/code&gt; and &lt;code&gt;npm run android&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Make sure to check the &lt;a href="https://github.com/expo/expo/blob/master/CHANGELOG.md" rel="noopener noreferrer"&gt;changelog&lt;/a&gt; for other breaking changes!&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>mobile</category>
      <category>reactnative</category>
      <category>ios</category>
      <category>android</category>
    </item>
    <item>
      <title>Expo SDK 41 beta is now available</title>
      <dc:creator>Expo Team</dc:creator>
      <pubDate>Tue, 30 Mar 2021 18:23:38 +0000</pubDate>
      <link>https://dev.to/expo/expo-sdk-41-beta-is-now-available-11i1</link>
      <guid>https://dev.to/expo/expo-sdk-41-beta-is-now-available-11i1</guid>
      <description>&lt;p&gt;Learn about the changes, how to try it out, and how to give feedback&lt;/p&gt;

&lt;p&gt;The beta period will last approximately two weeks, and it is an opportunity for developers to ensure that the new release does not introduce any regressions for their particular system and app configurations.&lt;/p&gt;

&lt;p&gt;SDK 41 beta includes React Native 0.63, the same version as SDK 39 and 40. The full release notes won’t be available until the final release, but you can browse the changes in the &lt;a href="https://github.com/expo/expo/blob/master/CHANGELOG.md" rel="noopener noreferrer"&gt;expo/expo CHANGELOG&lt;/a&gt; to learn more about the scope of the release and any breaking changes.&lt;/p&gt;

&lt;h2&gt;
  
  
  Notable changes to be aware of
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;@react-native-community/async-storage&lt;/code&gt; is now &lt;code&gt;@react-native-async-storage/async-storage&lt;/code&gt;. You &lt;strong&gt;must&lt;/strong&gt; change to the new package in SDK 41.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Files with the &lt;code&gt;.expo&lt;/code&gt; extension (eg: &lt;code&gt;MyComponent.expo.js&lt;/code&gt;) are no longer recognized as source files. If your project source code or dependencies include any files with the &lt;code&gt;.expo.&lt;/code&gt; extension, &lt;code&gt;expo-cli&lt;/code&gt; will let you know when you upgrade. Refer to &lt;a href="https://expo.fyi/expo-extension-migration" rel="noopener noreferrer"&gt;expo.fyi/expo-extension-migration&lt;/a&gt; for more information.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;iOS 10 support has been dropped — Expo SDK 41 supports iOS 11+. One of the reasons for dropping iOS 10 was to reduce the size of prebuilt binaries for Expo packages.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Node 10 support will be dropped soon from Expo CLI - it's not that we have anything against the number 10, but Node 10 is about to be replaced by Node 12 as the Maintenance LTS release.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://github.com/expo/fyi/blob/master/deprecated-globals.md" rel="noopener noreferrer"&gt;Deprecated globals&lt;/a&gt; have been removed from the &lt;code&gt;expo&lt;/code&gt; package. &lt;code&gt;expo-linear-gradient&lt;/code&gt;, &lt;code&gt;expo-linking&lt;/code&gt;, &lt;code&gt;expo-location&lt;/code&gt;, &lt;code&gt;expo-permissions&lt;/code&gt;, and &lt;code&gt;expo-sqlite&lt;/code&gt; are no longer automatically installed in every project. If you were depending on &lt;code&gt;global.expo.LinearGradient&lt;/code&gt; or similar, please the respective package and import the API from there instead, eg: &lt;code&gt;import { LinearGradient } from 'expo-linear-gradient';&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;expo-permissions&lt;/code&gt; has been deprecated in favor of module-specific permissions methods, eg: &lt;code&gt;Permissions.askAsync(Permissions.CAMERA)&lt;/code&gt; ➡️ &lt;code&gt;Camera.requestPermissionsAsync()&lt;/code&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Android apps now target Android R (11 / SDK 30). This comes with some significant changes for location permissions, media library (related to &lt;a href="https://android-doc.github.io/guide/topics/providers/document-provider.html" rel="noopener noreferrer"&gt;StorageAccessFramework&lt;/a&gt;), and constants. Please note that these changes also impact SDK &amp;lt;= 40 projects in Expo Go, but they will not impact SDK &amp;lt;= 40 standalone apps. Refer to &lt;a href="https://expo.fyi/android-r" rel="noopener noreferrer"&gt;expo.fyi/android-r&lt;/a&gt; for more information. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The recommended version of &lt;code&gt;react-native-reanimated&lt;/code&gt; has been updated to v2. If you would like to use v2 features in your app, you need to add the &lt;a href="https://docs.swmansion.com/react-native-reanimated/docs/installation/#babel-plugin" rel="noopener noreferrer"&gt;Babel plugin&lt;/a&gt;. You can continue to use v1 features (eg: those used by React Navigation v5) without adding the Babel plugin. Please note that if you use the new features from v2, you will not be able to use remote JS debugging in your app! This is only possible in v2 using Flipper, which is not yet fully supported in the managed workflow.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The new version of &lt;code&gt;react-native-screens&lt;/code&gt; (v3) “enables screens” by default. If you encounter any related issues, you can report the issue and opt out with &lt;code&gt;enableScreens(false)&lt;/code&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;lottie-react-native&lt;/code&gt; has been updated to the latest version! Your existing animations should continue to work as before, but if you encounter any issues please file an issue and share the animation file.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Known regressions
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Outstanding
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Bitcode has been disabled on SDK 41 standalone apps for iOS, pending &lt;a href="https://github.com/facebook/facebook-ios-sdk/pull/1698" rel="noopener noreferrer"&gt;facebook/facebook-ios-sdk#1698&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Resolved
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Textures in &lt;code&gt;expo-gl&lt;/code&gt; on Android are not currently working in published SDK 41 projects in Expo Go or standalone apps. &lt;a href="https://github.com/expo/expo/pull/12428" rel="noopener noreferrer"&gt;Related pull request&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;lottie-react-native crashes on iOS. &lt;a href="https://github.com/expo/expo/pull/12377" rel="noopener noreferrer"&gt;Related pull request&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How to try out the beta release
&lt;/h2&gt;

&lt;p&gt;You will be able to opt in to using the SDK 41 beta by setting the EXPO_BETA environment variable to 1 (or some &lt;a href="https://www.npmjs.com/package/getenv/v/0.7.0#envboolishname-fallback" rel="noopener noreferrer"&gt;truthy value&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;On macOS and Linux, you can set this per command with &lt;code&gt;EXPO_BETA=1 expo &amp;lt;command&amp;gt;&lt;/code&gt;. On Windows, you can do the same with cross-env: &lt;code&gt;npx cross-env EXPO_BETA=1 expo &amp;lt;command&amp;gt;&lt;/code&gt;. Below we have listed in the commands in their more concise form.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Install the latest version of expo-cli&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;npm i -g expo-cli&lt;/code&gt; (SDK 41 requires &lt;a href="mailto:expo-cli@4.3.2"&gt;expo-cli@4.3.2&lt;/a&gt; or greater)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Initialize a new project with SDK 41 beta&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;EXPO_BETA=1 expo init&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Upgrade an existing project&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;EXPO_BETA=1 expo upgrade&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Install the latest Expo Go for iOS to your simulator:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;EXPO_BETA=1 expo client:install:ios&lt;/code&gt; outside of an Expo project or inside of an SDK 41 project&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Install the latest Expo Go for iOS to your physical device&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;Use this &lt;a href="https://testflight.apple.com/join/GZJxxfUU" rel="noopener noreferrer"&gt;TestFlight open beta link&lt;/a&gt; and follow the instructions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Install the latest Expo Go for Android&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;EXPO_BETA=1 expo client:install:android&lt;/code&gt; outside of an Expo project or inside of an SDK 41 project.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Running other CLI commands&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Other commands will work as expected without the &lt;code&gt;EXPO_BETA&lt;/code&gt; environment variable, including &lt;code&gt;build:{android,ios}&lt;/code&gt;.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Read the documentation by selecting it from the version selector in the API reference section&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsbu81b2u6sz34bqvizfl.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsbu81b2u6sz34bqvizfl.png" alt="Screen Shot 2021-03-30 at 9.29.07 AM" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://docs.expo.io/versions/v41.0.0" rel="noopener noreferrer"&gt;https://docs.expo.io/versions/v41.0.0&lt;/a&gt; &lt;/p&gt;

&lt;h2&gt;
  
  
  What to test
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Try ejecting your app and running it: &lt;code&gt;expo eject&lt;/code&gt;. Did it work without any changes? Perfect! No? Please report it on the &lt;a href="https://github.com/expo/expo/issues/12356" rel="noopener noreferrer"&gt;SDK 41 Beta Eject Issues Issue&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://expo.fyi/android-r" rel="noopener noreferrer"&gt;Media library and permissions changes made for Android R&lt;/a&gt; may impact your app. We'd appreciate your feedback on how they work for your app.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Did we miss updating the documentation somewhere? Let us know.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How to report issues
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Create an issue on &lt;a href="https://github.com/expo/expo/issues" rel="noopener noreferrer"&gt;https://github.com/expo/expo/issues&lt;/a&gt; and be sure to fill out the template.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Figuring out the underlying causes of issues is super helpful.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Let us know that you are using the SDK 41 beta so we can prioritize the issue.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Thank you for helping us with testing the release, we look forward to shipping it soon! 🚀&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Expo Application Services (EAS): Build and Submit</title>
      <dc:creator>Expo Team</dc:creator>
      <pubDate>Tue, 15 Dec 2020 19:31:09 +0000</pubDate>
      <link>https://dev.to/expo/expo-application-services-eas-build-and-submit-2hfj</link>
      <guid>https://dev.to/expo/expo-application-services-eas-build-and-submit-2hfj</guid>
      <description>&lt;p&gt;Today we're excited to announce the public preview of two brand new services: EAS Build and Submit. These are the first services available from Expo Application Services (EAS), our new cloud services.&lt;/p&gt;

&lt;h1&gt;
  
  
  EAS Build
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Feature Preview
&lt;/h2&gt;

&lt;p&gt;EAS Build is a new service that takes everything good about the Expo build service (&lt;code&gt;expo build:[ios|android]&lt;/code&gt;) and makes it available to all React Native apps. You can set your app up to build for distribution in minutes or even less, thanks to &lt;a href="https://docs.expo.io/app-signing/managed-credentials/" rel="noopener noreferrer"&gt;automatically managed app signing credentials&lt;/a&gt; and defaults that just work for most Expo and React Native apps.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fm06ala26ysg6ltp6chfo.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fm06ala26ysg6ltp6chfo.png" alt="1_Yfou6wa_fi05Ps8anXeJBA" width="800" height="400"&gt;&lt;/a&gt; &lt;/p&gt;
In this screenshot, we go from a brand new project to release build running on EAS Build in 30 seconds.



&lt;p&gt;We've also added support for "&lt;a href="https://docs.expo.io/build/internal-distribution/" rel="noopener noreferrer"&gt;internal distribution&lt;/a&gt;" - a feature that makes it easy for you to share test builds with colleagues and friends without going through an app store, by using &lt;a href="https://expo.canny.io/feature-requests/p/iosbuild-with-adhoc-provision-profile" rel="noopener noreferrer"&gt;ad hoc provisioning&lt;/a&gt; on iOS and standard APK side-loading on Android. Generating and updating the ad hoc provisioning profile can be handled entirely for you by EAS Build.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F22m1eoil1iifs16s9teu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F22m1eoil1iifs16s9teu.png" alt="1_9sydz-IelPB7FDMBSgRpwg" width="798" height="227"&gt;&lt;/a&gt;&lt;/p&gt;
Easily share builds with your team using “internal distribution”.

 

&lt;p&gt;EAS Build &lt;em&gt;currently&lt;/em&gt; works best with bare React Native apps. If you use the Expo managed workflow and end up needing to move to the bare workflow, you can transition seamlessly to EAS Build - just run eas build instead of expo build after ejecting.&lt;/p&gt;

&lt;h2&gt;
  
  
  Coming later in 2021: full support for Expo managed workflow
&lt;/h2&gt;

&lt;p&gt;With EAS Build, you can include libraries with native code that aren't part of the Expo standard library. For many of you, the Expo managed workflow is nearly a perfect fit - except for that one piece of functionality you absolutely have to have in your app, but that isn't part of the Expo standard library (whether that's &lt;a href="https://expo.canny.io/feature-requests/p/in-app-purchases" rel="noopener noreferrer"&gt;IAP&lt;/a&gt; support, &lt;a href="https://expo.canny.io/feature-requests/p/webrtc" rel="noopener noreferrer"&gt;WebRTC&lt;/a&gt;, &lt;a href="https://expo.canny.io/feature-requests/p/bluetooth-api" rel="noopener noreferrer"&gt;Bluetooth&lt;/a&gt;, or &lt;a href="https://dev.toesoteric"&gt;something more esoteric&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;EAS Build will let you use any compatible library from GitHub or npm or that you write yourself, even if it has native code in it.&lt;/p&gt;

&lt;p&gt;EAS Build also lets you build smaller, stripped-down binaries that include only the code your application needs, which means a &lt;a href="https://github.com/expo/fyi/blob/master/managed-app-size.md" rel="noopener noreferrer"&gt;smaller install size for your users&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;There's already early support for Expo managed apps in EAS Build in the preview, but it's not quite ready for production yet. There's also a big missing piece: how do you get a new version of your Expo development client app that includes your bespoke native runtime? We're working on this, and we'll have answers for you in the coming months.&lt;/p&gt;

&lt;p&gt;These are some of the most common requests we hear from Expo developers today, so we're extremely excited to be close to getting a solution into your hands.&lt;/p&gt;

&lt;h1&gt;
  
  
  EAS Submit
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Feature Preview
&lt;/h2&gt;

&lt;p&gt;When you want to put your app into the App Store and Play Store, you can use a single command from your terminal or from CI to submit it.&lt;/p&gt;

&lt;p&gt;When you run &lt;code&gt;eas submit&lt;/code&gt;, your app binary will be uploaded to EAS and then submitted to the respective app store from there. This means fewer dependencies to install on your machine, and that you can submit your apps from your Windows, Linux, or macOS computer to any app store.&lt;/p&gt;

&lt;p&gt;We guide you through your first submission and try to make your nth submission as easy as possible by catching common mistakes and giving you guidance on how to resolve them. For example, if you're missing a privacy policy, &lt;a href="https://expo.fyi/missing-privacy-policy" rel="noopener noreferrer"&gt;we have an FYI for that&lt;/a&gt;.&lt;/p&gt;

&lt;h1&gt;
  
  
  Expo Application Services (EAS)
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Expo&lt;/em&gt;&lt;/strong&gt; is the open source project, and &lt;strong&gt;&lt;em&gt;Expo Application Services&lt;/em&gt;&lt;/strong&gt; offers hosted cloud services built for both Expo and React Native.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You won't need EAS to use Expo&lt;/strong&gt;, which will always be open source and free. You can choose a different CI/CD service or use your own hardware.&lt;/p&gt;

&lt;p&gt;Likewise, &lt;strong&gt;you'll be able to take advantage of EAS with any React Native project, whether or not it uses Expo's open source tools&lt;/strong&gt;. EAS is designed for developers who specifically want their builds, updates and/or other parts of their app operations, development and collaboration workflows streamlined by a cloud service designed purposefully for and deeply integrated with React Native and Expo.&lt;/p&gt;

&lt;h1&gt;
  
  
  How does EAS relate to the Expo services that I'm already using for builds, updates, and notifications?
&lt;/h1&gt;

&lt;p&gt;We don't want to disrupt anyone who is counting on Expo services to make software, and so we'll continue to operate the existing build, update, and notification services indefinitely. So, if you're happy with the way you're using those services now, you don't need to do anything differently and you can continue using them.&lt;/p&gt;

&lt;p&gt;To reduce confusion with EAS versions of the services, we're going to start calling the existing free services the "Classic" Expo services. So, "Classic" Build, Updates, and Notifications.&lt;/p&gt;

&lt;p&gt;That said, EAS is where most of our investment and effort on the services side will go in the future, so you should expect to see each EAS service keep getting better, more powerful, and easier to use as time goes on. Keep an eye out for the EAS Update preview, launching in early 2021.&lt;/p&gt;

&lt;h1&gt;
  
  
  How much will EAS services cost to use?
&lt;/h1&gt;

&lt;p&gt;We'll always maintain a free tier that can meet the needs of individual and hobbyist developers building small apps. We'll announce further pricing details closer to the date when EAS services graduate from preview in 2021.&lt;/p&gt;

&lt;h1&gt;
  
  
  If I'm already an Expo Developer Services subscriber, how does this affect me?
&lt;/h1&gt;

&lt;p&gt;If you're currently paying for Expo Developer Services, we've automatically updated your plan to EAS Priority Plan. EAS Priority will have the same price point and feature set as your old Developer Services plan, plus preview access to EAS Build and Submit. You don't need to do anything: you'll be moved over automatically.&lt;/p&gt;

&lt;h1&gt;
  
  
  How can I try EAS Build and Submit right now?
&lt;/h1&gt;

&lt;p&gt;The previews of EAS Build and Submit are available to developers subscribed to the &lt;a href="https://expo.io/pricing" rel="noopener noreferrer"&gt;EAS Priority Plan&lt;/a&gt;. If you're not yet a subscriber, you can &lt;a href="https://expo.io/pricing" rel="noopener noreferrer"&gt;try it out for free for a month&lt;/a&gt;. If you want to try the preview services out but don't have access to a credit card, please reach out to us &lt;a href="https://www.twitter.com/expo" rel="noopener noreferrer"&gt;on Twitter&lt;/a&gt; and we can help you out.&lt;/p&gt;

&lt;p&gt;Once you're signed up, you can find everything that you need to know in the &lt;a href="https://docs.expo.io/eas" rel="noopener noreferrer"&gt;Feature Preview documentation&lt;/a&gt;. If you'd like to watch a quick video walkthrough of EAS Build and Submit, check out this YouTube video:&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/7E6zsRpfT4U"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

</description>
      <category>react</category>
      <category>reactnative</category>
      <category>mobile</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
