expo-dev-menu
Version:
Expo/React Native module with the developer menu.
19 lines (16 loc) • 602 B
text/xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="expo.modules.devmenu">
<application>
<activity
android:name=".DevMenuActivity"
android:theme="@style/Theme.AppCompat.Transparent.NoActionBar"
android:launchMode="singleTask">
<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-menu"/>
</intent-filter>
</activity>
</application>
</manifest>