expo-dev-launcher
Version:
Pre-release version of the Expo development launcher package for testing.
41 lines (32 loc) • 1.35 kB
text/xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
<application>
<meta-data
android:name="com.google.mlkit.vision.DEPENDENCIES"
android:value="barcode_ui"/>
<activity
android:name="expo.modules.devlauncher.launcher.DevLauncherActivity"
android:exported="true"
android:launchMode="singleTask"
android:theme="@style/Theme.AppCompat.DayNight.NoActionBar" />
<activity
android:name="expo.modules.devlauncher.compose.AuthActivity"
android:exported="true"
android:launchMode="singleTask"
android:theme="@style/Theme.AppCompat.DayNight.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="expo-dev-launcher" />
</intent-filter>
</activity>
<activity
android:name="expo.modules.devlauncher.launcher.errors.DevLauncherErrorActivity"
android:screenOrientation="portrait"
android:theme="@style/Theme.DevLauncher.ErrorActivity" />
</application>
<queries>
<package android:name="host.exp.exponent" />
</queries>
</manifest>