Skip to content

Commit 1187d45

Browse files
committed
build(test, deps): react-native to 0.78
- not 0.79 yet as react-native-macos 0.79+ isn't out yet - react-native and react-native-macos drop patch hunks as they are upstreamed now
1 parent 2d70f96 commit 1187d45

File tree

11 files changed

+970
-743
lines changed

11 files changed

+970
-743
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
"@inquirer/prompts": "^7.4.1",
7171
"@octokit/core": "^6.1.5",
7272
"@tsconfig/node-lts": "^22.0.1",
73-
"@types/react": "^18.3.20",
73+
"@types/react": "^19.0.0",
7474
"@types/react-native": "^0.73.0",
7575
"@typescript-eslint/eslint-plugin": "^8.31.0",
7676
"@typescript-eslint/parser": "^8.31.0",
@@ -100,7 +100,7 @@
100100
"typescript": "^5.8.3"
101101
},
102102
"resolutions": {
103-
"@types/react": "^18.3.18"
103+
"@types/react": "^19.0.0"
104104
},
105105
"workspaces": {
106106
"packages": [

tests/android/app/build.gradle

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

7474
android {
7575
ndkVersion rootProject.ext.ndkVersion

tests/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ buildscript {
22
ext.buildToolsVersion = "35.0.0"
33
ext.minSdkVersion = 24
44
ext.compileSdkVersion = 35
5-
ext.targetSdkVersion = 34
5+
ext.targetSdkVersion = 35
66

77
ext.ndkVersion = "27.1.12297006"
88

tests/android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

tests/android/gradlew

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ done
8686
# shellcheck disable=SC2034
8787
APP_BASE_NAME=${0##*/}
8888
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90-
' "$PWD" ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
9190

9291
# Use the maximum available, or set MAX_FD != -1 to use that value.
9392
MAX_FD=maximum

0 commit comments

Comments
 (0)