expo 51.0.35 → 51.0.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/build.gradle +2 -2
- package/build/Expo.fx.js +6 -1
- package/build/Expo.fx.js.map +1 -1
- package/build/errors/AppEntryNotFound.d.ts +2 -0
- package/build/errors/AppEntryNotFound.d.ts.map +1 -0
- package/build/errors/AppEntryNotFound.js +32 -0
- package/build/errors/AppEntryNotFound.js.map +1 -0
- package/bundledNativeModules.json +4 -4
- package/package.json +6 -6
package/android/build.gradle
CHANGED
|
@@ -33,7 +33,7 @@ def getRNVersion() {
|
|
|
33
33
|
ensureDependeciesWereEvaluated(project)
|
|
34
34
|
|
|
35
35
|
group = 'host.exp.exponent'
|
|
36
|
-
version = '51.0.
|
|
36
|
+
version = '51.0.37'
|
|
37
37
|
|
|
38
38
|
buildscript {
|
|
39
39
|
// Simple helper that allows the root project to override versions declared by this library.
|
|
@@ -46,7 +46,7 @@ android {
|
|
|
46
46
|
namespace "expo.core"
|
|
47
47
|
defaultConfig {
|
|
48
48
|
versionCode 1
|
|
49
|
-
versionName "51.0.
|
|
49
|
+
versionName "51.0.37"
|
|
50
50
|
consumerProguardFiles("proguard-rules.pro")
|
|
51
51
|
}
|
|
52
52
|
testOptions {
|
package/build/Expo.fx.js
CHANGED
|
@@ -2,8 +2,9 @@
|
|
|
2
2
|
import './winter';
|
|
3
3
|
import 'expo-asset';
|
|
4
4
|
import * as Font from 'expo-font';
|
|
5
|
-
import { StyleSheet } from 'react-native';
|
|
5
|
+
import { AppRegistry, StyleSheet } from 'react-native';
|
|
6
6
|
import { isRunningInExpoGo } from './environment/ExpoGo';
|
|
7
|
+
import { AppEntryNotFound } from './errors/AppEntryNotFound';
|
|
7
8
|
import { createErrorHandler } from './errors/ExpoErrorManager';
|
|
8
9
|
// If expo-font is installed and the style preprocessor is available, use it to parse fonts.
|
|
9
10
|
if (StyleSheet.setStyleAttributePreprocessor) {
|
|
@@ -14,4 +15,8 @@ if (isRunningInExpoGo()) {
|
|
|
14
15
|
const globalHandler = ErrorUtils.getGlobalHandler();
|
|
15
16
|
ErrorUtils.setGlobalHandler(createErrorHandler(globalHandler));
|
|
16
17
|
}
|
|
18
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
19
|
+
// Register a default component and expect `registerRootComponent` to be called later and update it.
|
|
20
|
+
AppRegistry.registerComponent('main', () => AppEntryNotFound);
|
|
21
|
+
}
|
|
17
22
|
//# sourceMappingURL=Expo.fx.js.map
|
package/build/Expo.fx.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Expo.fx.js","sourceRoot":"","sources":["../src/Expo.fx.tsx"],"names":[],"mappings":"AAAA,mFAAmF;AACnF,OAAO,UAAU,CAAC;AAClB,OAAO,YAAY,CAAC;AAEpB,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAClC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"Expo.fx.js","sourceRoot":"","sources":["../src/Expo.fx.tsx"],"names":[],"mappings":"AAAA,mFAAmF;AACnF,OAAO,UAAU,CAAC;AAClB,OAAO,YAAY,CAAC;AAEpB,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAClC,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAEvD,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAC7D,OAAO,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AAE/D,4FAA4F;AAC5F,IAAI,UAAU,CAAC,6BAA6B,EAAE;IAC5C,UAAU,CAAC,6BAA6B,CAAC,YAAY,EAAE,IAAI,CAAC,iBAAiB,CAAC,CAAC;CAChF;AAED,IAAI,iBAAiB,EAAE,EAAE;IACvB,wFAAwF;IACxF,MAAM,aAAa,GAAG,UAAU,CAAC,gBAAgB,EAAE,CAAC;IACpD,UAAU,CAAC,gBAAgB,CAAC,kBAAkB,CAAC,aAAa,CAAC,CAAC,CAAC;CAChE;AAED,IAAI,OAAO,CAAC,GAAG,CAAC,QAAQ,KAAK,YAAY,EAAE;IACzC,oGAAoG;IACpG,WAAW,CAAC,iBAAiB,CAAC,MAAM,EAAE,GAAG,EAAE,CAAC,gBAAgB,CAAC,CAAC;CAC/D","sourcesContent":["// load expo-asset immediately to set a custom `source` transformer in React Native\nimport './winter';\nimport 'expo-asset';\n\nimport * as Font from 'expo-font';\nimport { AppRegistry, StyleSheet } from 'react-native';\n\nimport { isRunningInExpoGo } from './environment/ExpoGo';\nimport { AppEntryNotFound } from './errors/AppEntryNotFound';\nimport { createErrorHandler } from './errors/ExpoErrorManager';\n\n// If expo-font is installed and the style preprocessor is available, use it to parse fonts.\nif (StyleSheet.setStyleAttributePreprocessor) {\n StyleSheet.setStyleAttributePreprocessor('fontFamily', Font.processFontFamily);\n}\n\nif (isRunningInExpoGo()) {\n // set up some improvements to commonly logged error messages stemming from react-native\n const globalHandler = ErrorUtils.getGlobalHandler();\n ErrorUtils.setGlobalHandler(createErrorHandler(globalHandler));\n}\n\nif (process.env.NODE_ENV !== 'production') {\n // Register a default component and expect `registerRootComponent` to be called later and update it.\n AppRegistry.registerComponent('main', () => AppEntryNotFound);\n}\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AppEntryNotFound.d.ts","sourceRoot":"","sources":["../../src/errors/AppEntryNotFound.tsx"],"names":[],"mappings":"AAEA,wBAAgB,gBAAgB,gBAW/B"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { StyleSheet, Text, View } from 'react-native';
|
|
2
|
+
export function AppEntryNotFound() {
|
|
3
|
+
return (<View style={styles.container}>
|
|
4
|
+
<Text style={styles.errorTitle}>App entry not found</Text>
|
|
5
|
+
<Text style={styles.errorDescription}>
|
|
6
|
+
The app entry point named "main" was not registered. This may be due to an uncaught error
|
|
7
|
+
thrown from a module's top-level code. Refer to the CLI logs and the native device logs for
|
|
8
|
+
more detail.
|
|
9
|
+
</Text>
|
|
10
|
+
</View>);
|
|
11
|
+
}
|
|
12
|
+
const styles = StyleSheet.create({
|
|
13
|
+
container: {
|
|
14
|
+
flex: 1,
|
|
15
|
+
justifyContent: 'center',
|
|
16
|
+
padding: 20,
|
|
17
|
+
backgroundColor: '#f2f2f2',
|
|
18
|
+
},
|
|
19
|
+
errorTitle: {
|
|
20
|
+
fontSize: 24,
|
|
21
|
+
fontWeight: 'bold',
|
|
22
|
+
color: '#d32f2f',
|
|
23
|
+
textAlign: 'center',
|
|
24
|
+
marginBottom: 24,
|
|
25
|
+
},
|
|
26
|
+
errorDescription: {
|
|
27
|
+
fontSize: 16,
|
|
28
|
+
color: '#333',
|
|
29
|
+
textAlign: 'center',
|
|
30
|
+
},
|
|
31
|
+
});
|
|
32
|
+
//# sourceMappingURL=AppEntryNotFound.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AppEntryNotFound.js","sourceRoot":"","sources":["../../src/errors/AppEntryNotFound.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AAEtD,MAAM,UAAU,gBAAgB;IAC9B,OAAO,CACL,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAC5B;MAAA,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,mBAAmB,EAAE,IAAI,CACzD;MAAA,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,gBAAgB,CAAC,CACnC;;;;MAGF,EAAE,IAAI,CACR;IAAA,EAAE,IAAI,CAAC,CACR,CAAC;AACJ,CAAC;AAED,MAAM,MAAM,GAAG,UAAU,CAAC,MAAM,CAAC;IAC/B,SAAS,EAAE;QACT,IAAI,EAAE,CAAC;QACP,cAAc,EAAE,QAAQ;QACxB,OAAO,EAAE,EAAE;QACX,eAAe,EAAE,SAAS;KAC3B;IACD,UAAU,EAAE;QACV,QAAQ,EAAE,EAAE;QACZ,UAAU,EAAE,MAAM;QAClB,KAAK,EAAE,SAAS;QAChB,SAAS,EAAE,QAAQ;QACnB,YAAY,EAAE,EAAE;KACjB;IACD,gBAAgB,EAAE;QAChB,QAAQ,EAAE,EAAE;QACZ,KAAK,EAAE,MAAM;QACb,SAAS,EAAE,QAAQ;KACpB;CACF,CAAC,CAAC","sourcesContent":["import { StyleSheet, Text, View } from 'react-native';\n\nexport function AppEntryNotFound() {\n return (\n <View style={styles.container}>\n <Text style={styles.errorTitle}>App entry not found</Text>\n <Text style={styles.errorDescription}>\n The app entry point named \"main\" was not registered. This may be due to an uncaught error\n thrown from a module's top-level code. Refer to the CLI logs and the native device logs for\n more detail.\n </Text>\n </View>\n );\n}\n\nconst styles = StyleSheet.create({\n container: {\n flex: 1,\n justifyContent: 'center',\n padding: 20,\n backgroundColor: '#f2f2f2',\n },\n errorTitle: {\n fontSize: 24,\n fontWeight: 'bold',\n color: '#d32f2f',\n textAlign: 'center',\n marginBottom: 24,\n },\n errorDescription: {\n fontSize: 16,\n color: '#333',\n textAlign: 'center',\n },\n});\n"]}
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"expo-constants": "~16.0.2",
|
|
33
33
|
"expo-contacts": "~13.0.5",
|
|
34
34
|
"expo-crypto": "~13.0.2",
|
|
35
|
-
"expo-dev-client": "~4.0.
|
|
35
|
+
"expo-dev-client": "~4.0.28",
|
|
36
36
|
"expo-device": "~6.0.2",
|
|
37
37
|
"expo-document-picker": "~12.0.2",
|
|
38
38
|
"expo-face-detector": "~12.7.1",
|
|
@@ -56,10 +56,10 @@
|
|
|
56
56
|
"expo-mail-composer": "~13.0.1",
|
|
57
57
|
"expo-media-library": "~16.0.5",
|
|
58
58
|
"expo-module-template": "~10.14.13",
|
|
59
|
-
"expo-modules-core": "~1.12.
|
|
59
|
+
"expo-modules-core": "~1.12.25",
|
|
60
60
|
"expo-navigation-bar": "~3.0.7",
|
|
61
61
|
"expo-network": "~6.0.1",
|
|
62
|
-
"expo-notifications": "~0.28.
|
|
62
|
+
"expo-notifications": "~0.28.18",
|
|
63
63
|
"expo-print": "~13.0.1",
|
|
64
64
|
"expo-random": "~14.0.1",
|
|
65
65
|
"expo-router": "~3.5.23",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"expo-system-ui": "~3.0.7",
|
|
79
79
|
"expo-task-manager": "~11.8.2",
|
|
80
80
|
"expo-tracking-transparency": "~4.0.2",
|
|
81
|
-
"expo-updates": "~0.25.
|
|
81
|
+
"expo-updates": "~0.25.27",
|
|
82
82
|
"expo-video-thumbnails": "~8.0.0",
|
|
83
83
|
"expo-web-browser": "~13.0.3",
|
|
84
84
|
"jest-expo": "~51.0.4",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo",
|
|
3
|
-
"version": "51.0.
|
|
3
|
+
"version": "51.0.37",
|
|
4
4
|
"description": "The Expo SDK",
|
|
5
5
|
"main": "build/Expo.js",
|
|
6
6
|
"module": "build/Expo.js",
|
|
@@ -65,23 +65,23 @@
|
|
|
65
65
|
"@expo/config-plugins": "8.0.10",
|
|
66
66
|
"@expo/metro-config": "0.18.11",
|
|
67
67
|
"@expo/vector-icons": "^14.0.3",
|
|
68
|
-
"babel-preset-expo": "~11.0.
|
|
68
|
+
"babel-preset-expo": "~11.0.15",
|
|
69
69
|
"expo-asset": "~10.0.10",
|
|
70
70
|
"expo-file-system": "~17.0.1",
|
|
71
71
|
"expo-font": "~12.0.10",
|
|
72
72
|
"expo-keep-awake": "~13.0.2",
|
|
73
|
-
"expo-modules-autolinking": "1.11.
|
|
74
|
-
"expo-modules-core": "1.12.
|
|
73
|
+
"expo-modules-autolinking": "1.11.3",
|
|
74
|
+
"expo-modules-core": "1.12.25",
|
|
75
75
|
"fbemitter": "^3.0.0",
|
|
76
76
|
"whatwg-url-without-unicode": "8.0.0-3"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
79
|
"@types/react": "~18.0.14",
|
|
80
80
|
"@types/react-test-renderer": "^18.0.0",
|
|
81
|
-
"expo-module-scripts": "^3.5.
|
|
81
|
+
"expo-module-scripts": "^3.5.3",
|
|
82
82
|
"react": "18.2.0",
|
|
83
83
|
"react-dom": "18.2.0",
|
|
84
84
|
"react-native": "0.74.5"
|
|
85
85
|
},
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "826560298c428d3e57db0f06cb65306b824082b4"
|
|
87
87
|
}
|