1<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2  <application>
3    <meta-data
4      android:name="expo.modules.updates.AUTO_SETUP"
5      android:value="false" />
6
7    <activity
8      android:name="expo.modules.devlauncher.launcher.DevLauncherActivity"
9      android:exported="true"
10      android:launchMode="singleTask"
11      android:theme="@style/Theme.DevLauncher.LauncherActivity">
12      <intent-filter>
13        <action android:name="android.intent.action.VIEW" />
14
15        <category android:name="android.intent.category.DEFAULT" />
16        <category android:name="android.intent.category.BROWSABLE" />
17
18        <data android:scheme="expo-dev-launcher" />
19      </intent-filter>
20    </activity>
21
22    <activity
23      android:name="expo.modules.devlauncher.launcher.errors.DevLauncherErrorActivity"
24      android:screenOrientation="portrait"
25      android:theme="@style/Theme.DevLauncher.ErrorActivity" />
26  </application>
27
28  <queries>
29    <package android:name="host.exp.exponent" />
30  </queries>
31</manifest>
32