mirror of
https://github.com/facebook/react-native.git
synced 2024-11-21 22:10:14 +00:00
bfc39353d1
Summary: As we introduced KGP inside `ReactAndroid` (cc ShikaSD), we now need to specify a version for it (as users will consume that build on Android New Architecture. Currently, the version is loaded in the RN `rootProject` which is not available on user's project. I'm cleaning this up. ## Changelog [Internal] - Do not specify a Kotlin version in the RN rootProject Pull Request resolved: https://github.com/facebook/react-native/pull/33589 Test Plan: Tested on a nightly version with ``` npx react-native init RNNightly --version nightly ``` Reviewed By: mdvacca Differential Revision: D35476777 Pulled By: cortinico fbshipit-source-id: 5a819ef5fa9a6886d7b7b683f31d59cb05a49f29
13 lines
525 B
Properties
13 lines
525 B
Properties
# This is causing issue with dependencies task: https://github.com/gradle/gradle/issues/9645#issuecomment-530746758
|
|
# org.gradle.configureondemand=true
|
|
org.gradle.daemon=true
|
|
org.gradle.jvmargs=-Xmx4g -XX:MaxMetaspaceSize=1g -Dfile.encoding=UTF-8
|
|
org.gradle.parallel=true
|
|
|
|
android.useAndroidX=true
|
|
|
|
# Use this property to specify which architecture you want to build.
|
|
# You can also override it from the CLI using
|
|
# ./gradlew <task> -PreactNativeArchitectures=x86_64
|
|
reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64
|