Skip to content

Commit bd7e899

Browse files
j-piaseckikkafar
andauthored
Support React Native 0.71 (#2313)
## Description This PR adds support for new architecture on React Native 0.71, which most notably includes the usage of prefabs in native builds. It also removes most of the dependencies of `FabricExample` app, so upgrades in the future should be easier. Co-authored-by: Kacper Kafara <[email protected]>
1 parent bb7c29b commit bd7e899

File tree

90 files changed

+6881
-7426
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+6881
-7426
lines changed

FabricExample/.buckconfig

Lines changed: 0 additions & 6 deletions
This file was deleted.

FabricExample/.flowconfig

Lines changed: 0 additions & 66 deletions
This file was deleted.

FabricExample/.gitignore

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,15 @@ local.properties
3131
*.iml
3232
*.hprof
3333
.cxx/
34+
*.keystore
35+
!debug.keystore
3436

3537
# node.js
3638
#
3739
node_modules/
3840
npm-debug.log
3941
yarn-error.log
4042

41-
# BUCK
42-
buck-out/
43-
\.buckd/
44-
*.keystore
45-
!debug.keystore
46-
4743
# fastlane
4844
#
4945
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
@@ -62,3 +58,6 @@ buck-out/
6258
# Ruby / CocoaPods
6359
/ios/Pods/
6460
/vendor/bundle/
61+
62+
# Temporary files created by Metro to check the health of the file watcher
63+
.metro-health-check*

FabricExample/Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source 'https://rubygems.org'
22

33
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
4-
ruby '2.7.5'
4+
ruby File.read(File.join(__dir__, '.ruby-version')).strip
55

6-
gem 'cocoapods', '~> 1.11', '>= 1.11.2'
6+
gem 'cocoapods', '~> 1.11', '>= 1.11.3'

FabricExample/Gemfile.lock

Lines changed: 0 additions & 100 deletions
This file was deleted.
File renamed without changes.

FabricExample/_node-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
16

FabricExample/_ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.5
1+
2.7.6

FabricExample/android/app/_BUCK

Lines changed: 0 additions & 55 deletions
This file was deleted.

0 commit comments

Comments
 (0)