UNPKG

react-native-open-wifi

Version:

Connect to open WiFi networks with React Native on Android

41 lines (40 loc) 1.83 kB
<?xml version="1.0" encoding="utf-8"?> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" > <PreferenceCategory android:key="catalyst_perf" android:title="Performance" > <CheckBoxPreference android:key="fps_debug" android:title="FPS Debugging" android:summary="Overlay FPS information and print debug FPS info about animations" android:defaultValue="false" /> <CheckBoxPreference android:key="animations_debug" android:title="Animations FPS Summaries" android:summary="At the end of animations, Toasts and logs to logcat debug information about the FPS during that transition. Currently only supported for transitions (animated navigations)." android:defaultValue="false" /> </PreferenceCategory> <PreferenceCategory android:key="pref_key_catalyst_debug" android:title="Debugging" > <CheckBoxPreference android:key="reload_on_js_change" android:title="Auto reload on JS change" android:summary="Reload JS automatically when JS changes. It's required for this to work to have dev server connection setup correctly." android:defaultValue="false" /> <EditTextPreference android:key="debug_http_host" android:title="Debug server host for device" android:summary="Debug server host for downloading JS bundle or communicating with JS debugger. With this setting empty launcher should work fine when running on emulator (or genymotion) and connection to debug server running on emulator's host" android:defaultValue="" /> </PreferenceCategory> </PreferenceScreen> <!-- From: file:/Users/mkonicek/code/react-native-android/ReactAndroid/src/main/res/devsupport/xml/preferences.xml -->