Skip to content

Commit 6563265

Browse files
authored
Bump dependencies to stable React Native 0.73.2 (#2698)
## Description Bumps RN version from rc.5 to stable release
1 parent 44499f2 commit 6563265

File tree

8 files changed

+748
-938
lines changed

8 files changed

+748
-938
lines changed

.github/workflows/ios-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ jobs:
3737
run: pod install
3838
- name: Build app
3939
working-directory: ${{ matrix.working-directory }}
40-
run: yarn ios --simulator=\"iPhone 11\" --mode Debug
40+
run: yarn ios --simulator=\"iPhone 14\" --mode Debug --verbose --terminal /bin/zsh

FabricExample/android/app/src/main/java/com/fabricexample/MainApplication.kt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ class MainApplication : Application(), ReactApplication {
1616

1717
override val reactNativeHost: ReactNativeHost =
1818
object : DefaultReactNativeHost(this) {
19-
override fun getPackages(): List<ReactPackage> {
20-
// Packages that cannot be autolinked yet can be added manually here, for example:
21-
// packages.add(new MyReactNativePackage());
22-
return PackageList(this).packages
23-
}
19+
override fun getPackages(): List<ReactPackage> =
20+
PackageList(this).packages.apply {
21+
// Packages that cannot be autolinked yet can be added manually here, for example:
22+
// add(MyReactNativePackage())
23+
}
2424

2525
override fun getJSMainModuleName(): String = "index"
2626

FabricExample/android/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,5 @@ buildscript {
1919
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
2020
}
2121
}
22+
23+
apply plugin: "com.facebook.react.rootproject"

0 commit comments

Comments
 (0)