React-Native Common Commands

To get the list of available emulator

  To open a emulator

  Listing all available simulators

  open -a Simulator

  Print log on Terminal

  React Devtools https://github.com/facebook/react-devtools/tree/master/packages/react-devtools   Reset Cache

  Update Dependency

 

  1. Clear watchman watches: watchman watch-del-all. 2. Delete the […]

person shubham sharmaaccess_time October 27, 2020launch Read More

Run/install/debug Android applications over Wi-Fi?

See forum post Any way to view Android screen remotely without root? – Post #9. Connect the device via USB and make sure debugging is working. adb tcpip 5555 find the IP address with adb shell netcfg adb connect <DEVICE_IP_ADDRESS>:5555 Disconnect USB and proceed with wireless debugging. adb -s <DEVICE_IP_ADDRESS>:5555 usb to switch back when done. No root […]

person shubham sharmaaccess_time October 4, 2017launch Read More

Android Studio Gradle project sync failed

    Just a blind guess: try to add something like this to your gradle.properties file in the project:

 

person shubham sharmaaccess_time January 2, 2017launch Read More