Skip to content

Commit f2c7ed1

Browse files
authored
chore: Upgrade React Native to 0.79 (#6347)
1 parent 540d2d2 commit f2c7ed1

65 files changed

Lines changed: 2062 additions & 2235 deletions

File tree

Some content is hidden

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

.detoxrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module.exports = {
1010
artifacts: {
1111
plugins: {
1212
screenshot: 'failing',
13-
video: 'failing',
13+
video: 'all',
1414
uiHierarchy: process.env.CI ? undefined : 'enabled'
1515
}
1616
},

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ local.properties
5252
*.keystore
5353
*.jks
5454
!debug.keystore
55+
.kotlin/
5556

5657
# node.js
5758
#

Gemfile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,10 @@ gem 'concurrent-ruby', '< 1.3.4'
1010

1111
gem 'fastlane'
1212
plugins_path = File.join(File.dirname(__FILE__), 'ios', 'fastlane', 'Pluginfile')
13-
eval_gemfile(plugins_path) if File.exist?(plugins_path)
13+
eval_gemfile(plugins_path) if File.exist?(plugins_path)
14+
15+
# Ruby 3.4.0 has removed some libraries from the standard library.
16+
gem 'bigdecimal'
17+
gem 'logger'
18+
gem 'benchmark'
19+
gem 'mutex_m'

Gemfile.lock

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,10 +306,14 @@ PLATFORMS
306306

307307
DEPENDENCIES
308308
activesupport (>= 6.1.7.5, != 7.1.0)
309+
benchmark
310+
bigdecimal
309311
cocoapods (>= 1.13, != 1.15.1, != 1.15.0)
310312
concurrent-ruby (< 1.3.4)
311313
fastlane
312314
fastlane-plugin-bugsnag
315+
logger
316+
mutex_m
313317
xcodeproj (< 1.26.0)
314318

315319
RUBY VERSION

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,14 @@ def enableProguardInReleaseBuilds = false
6666
* The preferred build flavor of JavaScriptCore (JSC)
6767
*
6868
* For example, to use the international variant, you can use:
69-
* `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
69+
* `def jscFlavor = io.github.react-native-community:jsc-android-intl:2026004.+`
7070
*
7171
* The international variant includes ICU i18n library and necessary data
7272
* allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
7373
* give correct results when using with locales other than en-US. Note that
7474
* this variant is about 6MiB larger per architecture than default.
7575
*/
76-
def jscFlavor = 'org.webkit:android-jsc:+'
76+
def jscFlavor = 'io.github.react-native-community:jsc-android:2026004.+'
7777

7878
project.ext.react = [
7979
// bundleAssetName: "app.bundle",
7.28 KB
Loading
4.47 KB
Loading
10.5 KB
Loading
19.2 KB
Loading
23.7 KB
Loading

0 commit comments

Comments
 (0)