We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 289f048 commit 26ff2b8Copy full SHA for 26ff2b8
examples/SampleApp/fastlane/Fastfile
@@ -7,6 +7,7 @@ xcode_project = 'ios/SampleApp.xcodeproj'
7
xcode_workspace = 'ios/SampleApp.xcworkspace'
8
template_app_name = 'DemoApp'
9
bundletool_version = '1.17.1'
10
+react_native_version = '0.74.5'
11
@force_check = false
12
temp_dir = Dir.mktmpdir
13
@@ -213,9 +214,7 @@ end
213
214
lane :frameworks_sizes do
215
rn_project_dir = create_template_project
216
- Dir.chdir(rn_project_dir) do
217
- sh('yarn add react-native@0.74.5')
218
- end
+ Dir.chdir(rn_project_dir) { sh("yarn add react-native@#{react_native_version}") }
219
220
android_app_size_without_sdk = android_app_size(rn_project_dir: rn_project_dir)
221
ios_app_size_without_sdk = ios_app_size(rn_project_dir: rn_project_dir)
0 commit comments