History log of /expo/packages/expo-dev-client/src/DevClient.ts (Results 1 – 3 of 3)
Revision Date Author Comments
# 3dc2b1c7 02-Mar-2022 Łukasz Kosmaty <[email protected]>

[dev-launcher] Expose method to determine if you are running in a development build (#16486)

# Why

Closes ENG-2627.

# How

Checks if the `EXDevLauncher` module exists. It will only exist in

[dev-launcher] Expose method to determine if you are running in a development build (#16486)

# Why

Closes ENG-2627.

# How

Checks if the `EXDevLauncher` module exists. It will only exist in the development build.

# Test Plan

Run:
```js
export default function App() {
return (
<View style={styles.container}>
<Text>{ DevClient. isDevelopmentBuild() }</Text>
<StatusBar style="auto" />
</View>
);
}
```
inside:
- development build ✅
- expo go ✅

show more ...


# 0ded9418 10-Jun-2021 Łukasz Kosmaty <[email protected]>

[dev-launcher] Improve error messages (#12934)

# Why

Closes ENG-1021.

# How

- Added global error handler - similar solution to the one used in the `expo-error-recovery`.
- Added `Possible

[dev-launcher] Improve error messages (#12934)

# Why

Closes ENG-1021.

# How

- Added global error handler - similar solution to the one used in the `expo-error-recovery`.
- Added `Possible solutions` to the error message if we can recognize the exception.
- Updated documentation.
- Updated the config plugin.

# Test Plan

- bare-expo ✅
- `npx crna -t with-dev-client` ✅

show more ...


# 4b57290a 06-May-2021 Ville Immonen <[email protected]>

[dev-client] Add expo-dev-client package (#12765)