expo 45.0.0-beta.9 → 45.0.0

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.
@@ -33,7 +33,7 @@ def getRNVersion() {
33
33
  ensureDependeciesWereEvaluated(project)
34
34
 
35
35
  group = 'host.exp.exponent'
36
- version = '45.0.0-beta.9'
36
+ version = '45.0.0'
37
37
 
38
38
  buildscript {
39
39
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -104,7 +104,7 @@ android {
104
104
  minSdkVersion safeExtGet("minSdkVersion", 21)
105
105
  targetSdkVersion safeExtGet("targetSdkVersion", 31)
106
106
  versionCode 1
107
- versionName "45.0.0-beta.9"
107
+ versionName "45.0.0"
108
108
  consumerProguardFiles("proguard-rules.pro")
109
109
  }
110
110
  lintOptions {
@@ -6,8 +6,8 @@ let useDevKeepAwake = () => { };
6
6
  if (__DEV__) {
7
7
  try {
8
8
  // Optionally import expo-keep-awake
9
- const { useKeepAwake } = require('expo-keep-awake');
10
- useDevKeepAwake = useKeepAwake;
9
+ const { useKeepAwake, ExpoKeepAwakeTag } = require('expo-keep-awake');
10
+ useDevKeepAwake = () => useKeepAwake(ExpoKeepAwakeTag, { suppressDeactivateWarnings: true });
11
11
  }
12
12
  catch { }
13
13
  }
@@ -1 +1 @@
1
- {"version":3,"file":"withExpoRoot.js","sourceRoot":"","sources":["../../src/launch/withExpoRoot.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;AAGvD,qFAAqF;AACrF,iFAAiF;AACjF,IAAI,eAAe,GAA2B,GAAG,EAAE,GAAE,CAAC,CAAC;AAEvD,IAAI,OAAO,EAAE;IACX,IAAI;QACF,oCAAoC;QACpC,MAAM,EAAE,YAAY,EAAE,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAAC;QACpD,eAAe,GAAG,YAAY,CAAC;KAChC;IAAC,MAAM,GAAE;CACX;AAED,MAAM,CAAC,OAAO,UAAU,YAAY,CAClC,gBAAwC;IAExC,OAAO,SAAS,QAAQ,CAAC,KAAQ;QAC/B,eAAe,EAAE,CAAC;QAElB,MAAM,aAAa,GAAG,oBAAoB,CAAC,KAAK,CAAC,CAAC;QAClD,OAAO,oBAAC,gBAAgB,OAAK,aAAa,GAAI,CAAC;IACjD,CAAC,CAAC;AACJ,CAAC","sourcesContent":["import * as React from 'react';\n\nimport { attachRecoveredProps } from './RecoveryProps';\nimport { InitialProps } from './withExpoRoot.types';\n\n// This hook can be optionally imported because __DEV__ never changes during runtime.\n// Using __DEV__ like this enables tree shaking to remove the hook in production.\nlet useDevKeepAwake: (tag?: string) => void = () => {};\n\nif (__DEV__) {\n try {\n // Optionally import expo-keep-awake\n const { useKeepAwake } = require('expo-keep-awake');\n useDevKeepAwake = useKeepAwake;\n } catch {}\n}\n\nexport default function withExpoRoot<P extends InitialProps>(\n AppRootComponent: React.ComponentType<P>\n): React.ComponentType<P> {\n return function ExpoRoot(props: P) {\n useDevKeepAwake();\n\n const combinedProps = attachRecoveredProps(props);\n return <AppRootComponent {...combinedProps} />;\n };\n}\n"]}
1
+ {"version":3,"file":"withExpoRoot.js","sourceRoot":"","sources":["../../src/launch/withExpoRoot.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;AAGvD,qFAAqF;AACrF,iFAAiF;AACjF,IAAI,eAAe,GAA2B,GAAG,EAAE,GAAE,CAAC,CAAC;AAEvD,IAAI,OAAO,EAAE;IACX,IAAI;QACF,oCAAoC;QACpC,MAAM,EAAE,YAAY,EAAE,gBAAgB,EAAE,GAAG,OAAO,CAAC,iBAAiB,CAAC,CAAC;QACtE,eAAe,GAAG,GAAG,EAAE,CAAC,YAAY,CAAC,gBAAgB,EAAE,EAAE,0BAA0B,EAAE,IAAI,EAAE,CAAC,CAAC;KAC9F;IAAC,MAAM,GAAE;CACX;AAED,MAAM,CAAC,OAAO,UAAU,YAAY,CAClC,gBAAwC;IAExC,OAAO,SAAS,QAAQ,CAAC,KAAQ;QAC/B,eAAe,EAAE,CAAC;QAElB,MAAM,aAAa,GAAG,oBAAoB,CAAC,KAAK,CAAC,CAAC;QAClD,OAAO,oBAAC,gBAAgB,OAAK,aAAa,GAAI,CAAC;IACjD,CAAC,CAAC;AACJ,CAAC","sourcesContent":["import * as React from 'react';\n\nimport { attachRecoveredProps } from './RecoveryProps';\nimport { InitialProps } from './withExpoRoot.types';\n\n// This hook can be optionally imported because __DEV__ never changes during runtime.\n// Using __DEV__ like this enables tree shaking to remove the hook in production.\nlet useDevKeepAwake: (tag?: string) => void = () => {};\n\nif (__DEV__) {\n try {\n // Optionally import expo-keep-awake\n const { useKeepAwake, ExpoKeepAwakeTag } = require('expo-keep-awake');\n useDevKeepAwake = () => useKeepAwake(ExpoKeepAwakeTag, { suppressDeactivateWarnings: true });\n } catch {}\n}\n\nexport default function withExpoRoot<P extends InitialProps>(\n AppRootComponent: React.ComponentType<P>\n): React.ComponentType<P> {\n return function ExpoRoot(props: P) {\n useDevKeepAwake();\n\n const combinedProps = attachRecoveredProps(props);\n return <AppRootComponent {...combinedProps} />;\n };\n}\n"]}
@@ -16,26 +16,27 @@
16
16
  "expo-app-auth": "~11.1.0",
17
17
  "expo-app-loader-provider": "~8.0.0",
18
18
  "expo-app-loading": "~2.0.0",
19
- "expo-apple-authentication": "~4.2.0",
19
+ "expo-apple-authentication": "~4.2.1",
20
20
  "expo-application": "~4.1.0",
21
21
  "expo-asset": "~8.5.0",
22
22
  "expo-auth-session": "~3.6.0",
23
- "expo-av": "~11.2.2",
23
+ "expo-av": "~11.2.3",
24
24
  "expo-background-fetch": "~10.2.0",
25
25
  "expo-barcode-scanner": "~11.3.0",
26
26
  "expo-battery": "~6.2.0",
27
27
  "expo-blur": "~11.1.0",
28
28
  "expo-branch": "~5.2.0",
29
29
  "expo-brightness": "~10.2.0",
30
+ "expo-build-properties": "~0.1.0",
30
31
  "expo-calendar": "~10.2.0",
31
32
  "expo-camera": "~12.2.0",
32
33
  "expo-cellular": "~4.2.0",
33
34
  "expo-checkbox": "~2.1.0",
34
35
  "expo-clipboard": "~3.0.1",
35
- "expo-constants": "~13.1.0",
36
+ "expo-constants": "~13.1.1",
36
37
  "expo-contacts": "~10.2.0",
37
38
  "expo-crypto": "~10.2.0",
38
- "expo-dev-client": "~0.9.3",
39
+ "expo-dev-client": "~0.9.4",
39
40
  "expo-device": "~4.2.0",
40
41
  "expo-document-picker": "~10.2.1",
41
42
  "expo-error-recovery": "~3.1.0",
@@ -56,19 +57,19 @@
56
57
  "expo-image-picker": "~13.1.1",
57
58
  "expo-in-app-purchases": "~13.0.0",
58
59
  "expo-intent-launcher": "~10.2.0",
59
- "expo-keep-awake": "~10.1.0",
60
+ "expo-keep-awake": "~10.1.1",
60
61
  "expo-linear-gradient": "~11.3.0",
61
62
  "expo-linking": "~3.1.0",
62
63
  "expo-local-authentication": "~12.2.0",
63
64
  "expo-localization": "~13.0.0",
64
- "expo-location": "~14.2.1",
65
+ "expo-location": "~14.2.2",
65
66
  "expo-mail-composer": "~11.2.0",
66
67
  "expo-media-library": "~14.1.0",
67
68
  "expo-module-template": "~10.4.0",
68
- "expo-modules-core": "~0.9.0",
69
+ "expo-modules-core": "~0.9.1",
69
70
  "expo-navigation-bar": "~1.2.0",
70
71
  "expo-network": "~4.2.0",
71
- "expo-notifications": "~0.15.1",
72
+ "expo-notifications": "~0.15.2",
72
73
  "expo-permissions": "~13.2.0",
73
74
  "expo-print": "~11.2.0",
74
75
  "expo-random": "~12.2.0",
@@ -85,17 +86,17 @@
85
86
  "expo-system-ui": "~1.2.0",
86
87
  "expo-task-manager": "~10.2.1",
87
88
  "expo-tracking-transparency": "~2.2.0",
88
- "expo-updates": "~0.13.0",
89
+ "expo-updates": "~0.13.1",
89
90
  "expo-video-thumbnails": "~6.3.0",
90
91
  "expo-web-browser": "~10.2.0",
91
92
  "lottie-react-native": "5.0.1",
92
93
  "react": "17.0.2",
93
94
  "react-dom": "17.0.2",
94
95
  "react-native": "0.68.1",
95
- "react-native-web": "0.17.1",
96
+ "react-native-web": "0.17.7",
96
97
  "react-native-branch": "5.0.0",
97
98
  "react-native-gesture-handler": "~2.2.0",
98
- "react-native-get-random-values": "~1.7.0",
99
+ "react-native-get-random-values": "~1.8.0",
99
100
  "react-native-maps": "0.30.1",
100
101
  "react-native-pager-view": "5.4.15",
101
102
  "react-native-reanimated": "~2.8.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo",
3
- "version": "45.0.0-beta.9",
3
+ "version": "45.0.0",
4
4
  "description": "The Expo SDK",
5
5
  "main": "build/Expo.js",
6
6
  "module": "build/Expo.js",
@@ -54,18 +54,18 @@
54
54
  "homepage": "https://github.com/expo/expo/tree/main/packages/expo",
55
55
  "dependencies": {
56
56
  "@babel/runtime": "^7.14.0",
57
- "@expo/cli": "0.1.3",
57
+ "@expo/cli": "0.1.4",
58
58
  "@expo/vector-icons": "^13.0.0",
59
59
  "babel-preset-expo": "~9.1.0",
60
60
  "cross-spawn": "^6.0.5",
61
61
  "expo-application": "~4.1.0",
62
62
  "expo-asset": "~8.5.0",
63
- "expo-constants": "~13.1.0",
63
+ "expo-constants": "~13.1.1",
64
64
  "expo-file-system": "~14.0.0",
65
65
  "expo-font": "~10.1.0",
66
- "expo-keep-awake": "~10.1.0",
67
- "expo-modules-autolinking": "0.7.0",
68
- "expo-modules-core": "0.9.0",
66
+ "expo-keep-awake": "~10.1.1",
67
+ "expo-modules-autolinking": "0.7.1",
68
+ "expo-modules-core": "0.9.1",
69
69
  "fbemitter": "^3.0.0",
70
70
  "getenv": "^1.0.0",
71
71
  "invariant": "^2.2.4",
@@ -89,5 +89,5 @@
89
89
  "react-dom": "17.0.2",
90
90
  "react-native": "0.68.1"
91
91
  },
92
- "gitHead": "2c80909eaf5380d9c5f6f7034ca30a6bb8d84098"
92
+ "gitHead": "b9d655c1bed682ad8919e071dd923968773f05b5"
93
93
  }