Skip to content

Commit b0f5251

Browse files
maciejmakowski2003Maciej Makowski
andauthored
feat: added support for x86 (#293)
Co-authored-by: Maciej Makowski <maciej.makowski2608@gmail.com>
1 parent 4c9505b commit b0f5251

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

apps/fabric-example/android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ android.useAndroidX=true
2525
# Use this property to specify which architecture you want to build.
2626
# You can also override it from the CLI using
2727
# ./gradlew <task> -PreactNativeArchitectures=x86_64
28-
reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86_64
28+
reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86_64,x86
2929

3030
# Use this property to enable support to the new architecture.
3131
# This will allow you to use TurboModules and the Fabric render in

packages/react-native-audio-api/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ buildscript {
1515

1616
def reactNativeArchitectures() {
1717
def value = rootProject.getProperties().get("reactNativeArchitectures")
18-
return value ? value.split(",") : ["armeabi-v7a", "arm64-v8a", "x86_64"]
18+
return value ? value.split(",") : ["armeabi-v7a", "arm64-v8a", "x86_64", "x86"]
1919
}
2020

2121
def isNewArchitectureEnabled() {
9.86 MB
Binary file not shown.

0 commit comments

Comments
 (0)