Skip to content

Commit 1e9a52f

Browse files
committed
Update RN in the example app
1 parent 07e555b commit 1e9a52f

File tree

13 files changed

+2278
-3790
lines changed

13 files changed

+2278
-3790
lines changed

example/android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ android.useAndroidX=true
2727
# Automatically convert third-party libraries to use AndroidX
2828
android.enableJetifier=true
2929
# Jetifier randomly fails on these libraries
30-
android.jetifier.ignorelist=hermes-android
30+
android.jetifier.ignorelist=hermes-android,react-android
3131

3232
# Use this property to specify which architecture you want to build.
3333
# You can also override it from the CLI using
-9 Bytes
Binary file not shown.

example/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.7-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

example/android/gradlew

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
# Darwin, MinGW, and NonStop.
5656
#
5757
# (3) This script is generated from the Groovy template
58-
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
58+
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
5959
# within the Gradle project.
6060
#
6161
# You can find Gradle at https://github.com/gradle/gradle/.

example/app.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
"dist/assets",
2121
"dist/main.macos.jsbundle"
2222
],
23+
"visionos": [
24+
"dist/assets",
25+
"dist/main.visionos.jsbundle"
26+
],
2327
"windows": [
2428
"dist/assets",
2529
"dist/main.windows.bundle"

example/index.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* @format
3+
*/
4+
15
import { AppRegistry } from 'react-native';
26
import App from './src/App';
37
import { name as appName } from './app.json';

example/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ require "#{ws_dir}/node_modules/react-native-test-app/test_app.rb"
66

77
workspace 'ImageEditorExample.xcworkspace'
88

9-
use_test_app!
9+
use_test_app! :hermes_enabled => true

0 commit comments

Comments
 (0)