expo-template-bare-minimum 55.0.0 → 55.0.2

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.
@@ -5,8 +5,8 @@
5
5
  <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
6
6
  <uses-permission android:name="android.permission.VIBRATE"/>
7
7
  <!-- These require runtime permissions on M -->
8
- <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
9
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
8
+ <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="32"/>
9
+ <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="32"/>
10
10
  <!-- END OPTIONAL PERMISSIONS -->
11
11
 
12
12
  <queries>
@@ -1,9 +1,9 @@
1
- import Expo
1
+ internal import Expo
2
2
  import React
3
3
  import ReactAppDependencyProvider
4
4
 
5
5
  @main
6
- public class AppDelegate: ExpoAppDelegate {
6
+ class AppDelegate: ExpoAppDelegate {
7
7
  var window: UIWindow?
8
8
 
9
9
  var reactNativeDelegate: ExpoReactNativeFactoryDelegate?
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "expo-template-bare-minimum",
3
3
  "description": "This bare project template includes a minimal setup for using unimodules with React Native.",
4
4
  "license": "0BSD",
5
- "version": "55.0.0",
5
+ "version": "55.0.2",
6
6
  "main": "index.js",
7
7
  "scripts": {
8
8
  "start": "expo start --dev-client",
@@ -11,8 +11,8 @@
11
11
  "web": "expo start --web"
12
12
  },
13
13
  "dependencies": {
14
- "expo": "~55.0.0-preview.1",
15
- "expo-status-bar": "~55.0.0",
14
+ "expo": "~55.0.0-preview.3",
15
+ "expo-status-bar": "~55.0.1",
16
16
  "react": "19.2.0",
17
17
  "react-native": "0.83.1"
18
18
  }