You.i TV supports debugging React Native using one of the following software packages:
Redux DevTools is a browser extension used for debugging Redux application’s state changes. You.i TV recommends using it as part of React Native Debugger instead of on its own. See the Setting up Redux DevTools section to set up Redux DevTools.
Ensure the application you’re working with supports Redux.
Do the following:
Run the following command in the RN project folder:
yarn add --dev redux-devtools-extension
Modify your store as shown here. The following is an example of a modified simple store without middleware:
import { createStore} from 'redux';
import { composeWithDevTools } from 'redux-devtools-extension';
let store = createStore(counter, composeWithDevTools());
React Native Debugger is a standalone app to debug React Native apps. It consists of React Native DevTools, Redux DevTools, Remote Debugger, and React Inspector. To install and setup React Native Debugger as a standalone app, see the instructions here.
By default, React Inspector is installed with the installation of React Native Debugger. To access it, right-click the React Native Tools window and select Enable Network Inspect.
No results yet. Please begin typing a keyword to search the You.i TV Developer Portal...
Try to search with a different keyword or remove search filters.