expo 46.0.0-beta.6 → 46.0.1

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/README.md CHANGED
@@ -1,7 +1,10 @@
1
1
  # expo
2
2
 
3
- The `expo` package is an umbrella package that contains the client-side code (ex: JavaScript) for accessing system functionality such as contacts, camera, and location in Expo apps.
3
+ The `expo` package is a single package you can install in any React Native app to begin using Expo modules.
4
4
 
5
- Some of the Expo APIs are implemented in this package, while others are implemented in universal modules under the parent `packages` directory.
5
+ - includes core infrastructure for Expo modules: `expo-modules-core` and `expo-modules-autolinking`.
6
+ - bundles a minimal set of Expo modules that are required by nearly every app, such as `expo-asset`.
7
+ - provides [`@expo/cli`](https://github.com/expo/expo/blob/main/packages/%40expo/cli/README.md), a small CLI that provides a clean interface around both bundlers (such as Metro and Webpack) and native build tools (Xcode, Simulator.app, Android Studio, ADB, etc.), can generate native projects with `npx expo prebuild`, and aligns compatible package versions with `npx expo install`.
8
+ - exposes a JavaScript module that configures an app at runtime as needed to use `expo-font` and to function in Expo Go (optional, only if applicable).
6
9
 
7
- See [CONTRIBUTING](./CONTRIBUTING.md) for instructions on working on this package and the universal modules.
10
+ See [CONTRIBUTING](./CONTRIBUTING.md) for instructions on working on this package.
@@ -33,7 +33,7 @@ def getRNVersion() {
33
33
  ensureDependeciesWereEvaluated(project)
34
34
 
35
35
  group = 'host.exp.exponent'
36
- version = '46.0.0-beta.6'
36
+ version = '46.0.1'
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 "46.0.0-beta.6"
107
+ versionName "46.0.1"
108
108
  consumerProguardFiles("proguard-rules.pro")
109
109
  }
110
110
  lintOptions {
@@ -29,10 +29,10 @@
29
29
  "expo-cellular": "~4.3.0",
30
30
  "expo-checkbox": "~2.2.0",
31
31
  "expo-clipboard": "~3.1.0",
32
- "expo-constants": "~13.2.2",
32
+ "expo-constants": "~13.2.3",
33
33
  "expo-contacts": "~10.3.0",
34
34
  "expo-crypto": "~11.0.0",
35
- "expo-dev-client": "~1.1.0",
35
+ "expo-dev-client": "~1.1.1",
36
36
  "expo-device": "~4.3.0",
37
37
  "expo-document-picker": "~10.3.0",
38
38
  "expo-error-recovery": "~3.2.0",
@@ -48,12 +48,12 @@
48
48
  "expo-haptics": "~11.3.0",
49
49
  "expo-image-loader": "~3.2.0",
50
50
  "expo-image-manipulator": "~10.4.0",
51
- "expo-image-picker": "~13.3.0",
51
+ "expo-image-picker": "~13.3.1",
52
52
  "expo-in-app-purchases": "~13.1.0",
53
53
  "expo-intent-launcher": "~10.3.0",
54
54
  "expo-keep-awake": "~10.2.0",
55
55
  "expo-linear-gradient": "~11.4.0",
56
- "expo-linking": "~3.2.1",
56
+ "expo-linking": "~3.2.2",
57
57
  "expo-local-authentication": "~12.3.0",
58
58
  "expo-localization": "~13.1.0",
59
59
  "expo-location": "~14.3.0",
@@ -81,13 +81,13 @@
81
81
  "expo-system-ui": "~1.3.0",
82
82
  "expo-task-manager": "~10.3.0",
83
83
  "expo-tracking-transparency": "~2.3.1",
84
- "expo-updates": "~0.14.2",
84
+ "expo-updates": "~0.14.3",
85
85
  "expo-video-thumbnails": "~6.4.0",
86
86
  "expo-web-browser": "~11.0.0",
87
87
  "lottie-react-native": "5.1.3",
88
88
  "react": "18.0.0",
89
89
  "react-dom": "18.0.0",
90
- "react-native": "0.69.1",
90
+ "react-native": "0.69.3",
91
91
  "react-native-web": "~0.18.7",
92
92
  "react-native-branch": "^5.4.0",
93
93
  "react-native-gesture-handler": "~2.5.0",
@@ -100,7 +100,7 @@
100
100
  "react-native-shared-element": "0.8.4",
101
101
  "react-native-svg": "12.3.0",
102
102
  "react-native-view-shot": "3.3.0",
103
- "react-native-webview": "11.22.4",
103
+ "react-native-webview": "11.23.0",
104
104
  "sentry-expo": "~5.0.0",
105
105
  "unimodules-app-loader": "~3.1.0",
106
106
  "unimodules-image-loader-interface": "~6.1.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo",
3
- "version": "46.0.0-beta.6",
3
+ "version": "46.0.1",
4
4
  "description": "The Expo SDK",
5
5
  "main": "build/Expo.js",
6
6
  "module": "build/Expo.js",
@@ -55,17 +55,17 @@
55
55
  "homepage": "https://github.com/expo/expo/tree/main/packages/expo",
56
56
  "dependencies": {
57
57
  "@babel/runtime": "^7.14.0",
58
- "@expo/cli": "0.2.5",
58
+ "@expo/cli": "0.2.6",
59
59
  "@expo/vector-icons": "^13.0.0",
60
60
  "babel-preset-expo": "~9.2.0",
61
61
  "cross-spawn": "^6.0.5",
62
62
  "expo-application": "~4.2.2",
63
63
  "expo-asset": "~8.6.1",
64
- "expo-constants": "~13.2.2",
64
+ "expo-constants": "~13.2.3",
65
65
  "expo-file-system": "~14.1.0",
66
66
  "expo-font": "~10.2.0",
67
67
  "expo-keep-awake": "~10.2.0",
68
- "expo-modules-autolinking": "0.10.0",
68
+ "expo-modules-autolinking": "0.10.1",
69
69
  "expo-modules-core": "0.11.3",
70
70
  "fbemitter": "^3.0.0",
71
71
  "getenv": "^1.0.0",
@@ -88,7 +88,7 @@
88
88
  "expo-module-scripts": "^2.0.0",
89
89
  "react": "18.0.0",
90
90
  "react-dom": "18.0.0",
91
- "react-native": "0.69.1"
91
+ "react-native": "0.69.3"
92
92
  },
93
- "gitHead": "1403e4e01d7d9cc69b64d7723a1395455be2bdcd"
93
+ "gitHead": "a6f3d741ead4651b495053cad294fe5e6f13ef3e"
94
94
  }
@@ -3,6 +3,7 @@ require 'pathname'
3
3
  require 'colored2' # dependency of CocoaPods
4
4
 
5
5
  require File.join(File.dirname(`node --print "require.resolve('expo-modules-autolinking/package.json')"`), "scripts/ios/autolinking_manager")
6
+ require File.join(File.dirname(`node --print "require.resolve('expo-modules-autolinking/package.json')"`), "scripts/ios/xcode_env_generator")
6
7
  require File.join(File.dirname(`node --print "require.resolve('expo-modules-autolinking/package.json')"`), "scripts/ios/react_import_patcher")
7
8
 
8
9
  def use_expo_modules!(options = {})
@@ -14,6 +15,8 @@ def use_expo_modules!(options = {})
14
15
  end
15
16
 
16
17
  @current_target_definition.autolinking_manager = Expo::AutolinkingManager.new(self, @current_target_definition, options).use_expo_modules!
18
+
19
+ maybe_generate_xcode_env_file!()
17
20
  end
18
21
 
19
22
  def use_expo_modules_tests!(options = {})