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