This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npx react-native-clean-project | |
adb help // List all comands | |
== Adb Server | |
adb kill-server | |
adb start-server | |
== Adb Reboot | |
adb reboot |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fetch(url, { | |
method: "get", //put your method | |
headers: { | |
"Content-Type": "application/json", | |
"X-Requested-With": "XMLHttpRequest", | |
"Access-Control-Allow-Origin": "*" | |
}, | |
mode: 'no-cors' | |
}); |