This message was deleted.
# community-support
s
This message was deleted.
t
@Ruslan Isupov Hi 👋 Looking into the source code of script https://github.com/expo/expo/blob/main/packages/expo-constants/scripts/get-app-config-android.gradle#L8C1-L9C69 First possibility is that your project missing values set for
nodeExecutableAndArgs
in react project extension.
Copy code
project.ext.react = [
  nodeExecutableAndArgs: []
]
Another reason is that you are using newer version of the Gradle and the script was tested over the older version that supported the spread operator https://github.com/expo/expo/blob/main/packages/expo-constants/scripts/get-app-config-android.gradle#L40C42-L40C42 Yet another reason is that all set is well only that other gradle uses
ListProperty
in the place where
nodeExecutableAndArgs
is defined instead of the array type. Try to use the same Gradle version as an expo project which is
8.0.1
https://github.com/expo/expo/blob/main/android/gradle/wrapper/gradle-wrapper.properties#L3