1<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2  <application>
3    <activity
4      android:name=".DevMenuActivity"
5      android:exported="true"
6      android:launchMode="singleTask"
7      android:theme="@style/Theme.AppCompat.Transparent.NoActionBar">
8      <intent-filter>
9        <action android:name="android.intent.action.VIEW" />
10
11        <category android:name="android.intent.category.DEFAULT" />
12        <category android:name="android.intent.category.BROWSABLE" />
13
14        <data android:scheme="expo-dev-menu" />
15      </intent-filter>
16    </activity>
17  </application>
18</manifest>
19
20