Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: new architecture support #659

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Apps/BRNPlayground/android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64
# to write custom TurboModules/Fabric components OR use libraries that
# are providing them.
# Note that this is incompatible with web debugging.
#newArchEnabled=true
newArchEnabled=false
hermesEnabled=true

# Uncomment the line below if building react-native from source
#ANDROID_NDK_VERSION=26.1.10909125
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#Mon Sep 23 14:46:34 CEST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
12 changes: 11 additions & 1 deletion Apps/BRNPlayground/ios/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
require_relative '../node_modules/react-native-test-app/test_app'
require_relative '../node_modules/react-native-permissions/scripts/setup'


workspace 'BRNPlayground.xcworkspace'

use_test_app!
options = {
:hermes_enabled => true,
}

# react-native-permissions
setup_permissions(['Camera'])

use_test_app! options

Loading
Loading