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
adb help // List all comands | |
== Adb Server | |
adb kill-server | |
adb start-server | |
== Adb Reboot | |
adb reboot | |
adb reboot recovery | |
adb reboot-bootloader |
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
import React from 'react'; | |
import {View, Text, SafeAreaView, StyleSheet, Image} from 'react-native'; | |
import CheckConnection from './utils/CheckConnetion'; | |
const ErrorCard = () => { | |
return ( | |
<View style={styles.errorContainer}> | |
{/*check github repo for design*/} | |
</View> | |
); |
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
import {useState, useEffect} from 'react'; | |
import NetInfo from '@react-native-community/netinfo'; | |
let currentNetwork; | |
NetInfo.fetch().then((state) => { | |
currentNetwork = state.isConnected; | |
}); | |
const CheckConnection = () => { |