expo-template-bare-minimum 54.0.5 → 54.0.7
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/ios/HelloWorld/SplashScreen.storyboard +7 -2
- package/ios/Podfile +4 -4
- package/package.json +3 -3
- package/.cursor/mcp.json +0 -11
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="
|
|
2
|
+
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="24093.7" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="EXPO-VIEWCONTROLLER-1">
|
|
3
3
|
<device id="retina6_12" orientation="portrait" appearance="light"/>
|
|
4
4
|
<dependencies>
|
|
5
5
|
<deployment identifier="iOS"/>
|
|
6
|
-
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="
|
|
6
|
+
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="24053.1"/>
|
|
7
7
|
<capability name="Named colors" minToolsVersion="9.0"/>
|
|
8
8
|
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
|
|
9
|
+
<capability name="System colors in document resources" minToolsVersion="11.0"/>
|
|
9
10
|
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
|
10
11
|
</dependencies>
|
|
11
12
|
<scenes>
|
|
@@ -29,6 +30,7 @@
|
|
|
29
30
|
<constraint firstItem="EXPO-SplashScreen" firstAttribute="centerY" secondItem="EXPO-ContainerView" secondAttribute="centerY" id="0VC-Wk-OaO"/>
|
|
30
31
|
<constraint firstItem="EXPO-SplashScreen" firstAttribute="centerX" secondItem="EXPO-ContainerView" secondAttribute="centerX" id="zR4-NK-mVN"/>
|
|
31
32
|
</constraints>
|
|
33
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
32
34
|
</view>
|
|
33
35
|
</viewController>
|
|
34
36
|
<placeholder placeholderIdentifier="IBFirstResponder" id="EXPO-PLACEHOLDER-1" userLabel="First Responder" sceneMemberID="firstResponder"/>
|
|
@@ -38,5 +40,8 @@
|
|
|
38
40
|
</scenes>
|
|
39
41
|
<resources>
|
|
40
42
|
<image name="SplashScreenLogo" width="100" height="90.333335876464844"/>
|
|
43
|
+
<systemColor name="systemBackgroundColor">
|
|
44
|
+
<color white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
45
|
+
</systemColor>
|
|
41
46
|
</resources>
|
|
42
47
|
</document>
|
package/ios/Podfile
CHANGED
|
@@ -4,10 +4,10 @@ require File.join(File.dirname(`node --print "require.resolve('react-native/pack
|
|
|
4
4
|
require 'json'
|
|
5
5
|
podfile_properties = JSON.parse(File.read(File.join(__dir__, 'Podfile.properties.json'))) rescue {}
|
|
6
6
|
|
|
7
|
-
ENV['RCT_NEW_ARCH_ENABLED']
|
|
8
|
-
ENV['EX_DEV_CLIENT_NETWORK_INSPECTOR']
|
|
9
|
-
ENV['RCT_USE_RN_DEP']
|
|
10
|
-
ENV['RCT_USE_PREBUILT_RNCORE']
|
|
7
|
+
ENV['RCT_NEW_ARCH_ENABLED'] ||= '0' if podfile_properties['newArchEnabled'] == 'false'
|
|
8
|
+
ENV['EX_DEV_CLIENT_NETWORK_INSPECTOR'] ||= podfile_properties['EX_DEV_CLIENT_NETWORK_INSPECTOR']
|
|
9
|
+
ENV['RCT_USE_RN_DEP'] ||= '1' if podfile_properties['ios.buildReactNativeFromSource'] != 'true' && podfile_properties['newArchEnabled'] != 'false'
|
|
10
|
+
ENV['RCT_USE_PREBUILT_RNCORE'] ||= '1' if podfile_properties['ios.buildReactNativeFromSource'] != 'true' && podfile_properties['newArchEnabled'] != 'false'
|
|
11
11
|
platform :ios, podfile_properties['ios.deploymentTarget'] || '15.1'
|
|
12
12
|
|
|
13
13
|
prepare_react_native_project!
|
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": "54.0.
|
|
5
|
+
"version": "54.0.7",
|
|
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": "~54.0.0-preview.
|
|
15
|
-
"expo-status-bar": "~3.0.
|
|
14
|
+
"expo": "~54.0.0-preview.7",
|
|
15
|
+
"expo-status-bar": "~3.0.4",
|
|
16
16
|
"react": "19.1.0",
|
|
17
17
|
"react-native": "0.81.0"
|
|
18
18
|
}
|