Skip to content

Instantly share code, notes, and snippets.

View LeonardoJaques's full-sized avatar
:octocat:
Codding...

Leonardo Jaques LeonardoJaques

:octocat:
Codding...
View GitHub Profile
@LeonardoJaques
LeonardoJaques / AdbCommands
Last active May 11, 2022 14:46 — forked from Pulimet/AdbCommands
Adb useful commands list
npx react-native-clean-project
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
@LeonardoJaques
LeonardoJaques / cors fix
Created April 14, 2021 16:04 — forked from khorramk/cors fix
Client side Cors error fix
fetch(url, {
method: "get", //put your method
headers: {
"Content-Type": "application/json",
"X-Requested-With": "XMLHttpRequest",
"Access-Control-Allow-Origin": "*"
},
mode: 'no-cors'
});