Skip to content

Commit ff7084f

Browse files
committed
set rn version to 0.71.10
1 parent 20b64c0 commit ff7084f

File tree

6 files changed

+734
-111
lines changed

6 files changed

+734
-111
lines changed

android/app/src/main/java/com/reactnativestarter/MainActivity.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ protected ReactActivityDelegate createReactActivityDelegate() {
2727
this,
2828
getMainComponentName(),
2929
// If you opted-in for the New Architecture, we enable the Fabric Renderer.
30-
DefaultNewArchitectureEntryPoint.getFabricEnabled());
30+
DefaultNewArchitectureEntryPoint.getFabricEnabled(), // fabricEnabled
31+
// If you opted-in for the New Architecture, we enable Concurrent React (i.e. React 18).
32+
DefaultNewArchitectureEntryPoint.getConcurrentReactEnabled() // concurrentRootEnabled
33+
);
3134
}
3235
}
-1.71 KB
Binary file not shown.

android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
33
zipStoreBase=GRADLE_USER_HOME
44
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.1-all.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-all.zip
66
networkTimeout=10000

android/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
rootProject.name = 'ReactNativeStarter'
22
apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
33
include ':app'
4-
includeBuild('../node_modules/@react-native/gradle-plugin')
4+
includeBuild('../node_modules/react-native-gradle-plugin')

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"lodash": "^4.17.21",
3636
"moment": "^2.29.4",
3737
"react": "18.2.0",
38-
"react-native": "0.72.0-rc.5",
38+
"react-native": "0.71.10",
3939
"react-native-autocomplete-input": "^5.2.0",
4040
"react-native-calendars": "^1.1298.0",
4141
"react-native-elements": "^3.4.2",

0 commit comments

Comments
 (0)