Skip to content

Commit

Permalink
Bump dependencies to stable React Native 0.73.2 (#2698)
Browse files Browse the repository at this point in the history
## Description

Bumps RN version from rc.5 to stable release
  • Loading branch information
j-piasecki authored Jan 10, 2024
1 parent 44499f2 commit 6563265
Show file tree
Hide file tree
Showing 8 changed files with 748 additions and 938 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ios-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ jobs:
run: pod install
- name: Build app
working-directory: ${{ matrix.working-directory }}
run: yarn ios --simulator=\"iPhone 11\" --mode Debug
run: yarn ios --simulator=\"iPhone 14\" --mode Debug --verbose --terminal /bin/zsh
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ class MainApplication : Application(), ReactApplication {

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

override fun getJSMainModuleName(): String = "index"

Expand Down
2 changes: 2 additions & 0 deletions FabricExample/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ buildscript {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
}
}

apply plugin: "com.facebook.react.rootproject"
Loading

0 comments on commit 6563265

Please sign in to comment.