You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After following the migration guide I ended up with an error I can't solve. Caused by: groovy.lang.MissingPropertyException: Could not get unknown property 'providers' for settings 'Ara' of type org.gradle.initialization.DefaultSettings.
It is caused in the settings.gradle file:
rootProject.name = 'Ara'
apply from: new File(["node", "--print", "require.resolve('@react-native-community/cli-platform-android/package.json')"].execute(null, rootDir).text.trim(), "../native_modules.gradle");
applyNativeModulesSettingsGradle()
apply from: new File(["node", "--print", "require.resolve('expo/package.json')"].execute(null, rootDir).text.trim(), "../scripts/autolinking.gradle");
useExpoModules()
include ':app'
When I comment this ./gradlew build works fine and returns Build Successful
The text was updated successfully, but these errors were encountered:
After following the migration guide I ended up with an error I can't solve.
Caused by: groovy.lang.MissingPropertyException: Could not get unknown property 'providers' for settings 'Ara' of type org.gradle.initialization.DefaultSettings.
It is caused in the settings.gradle file:
When I comment this
./gradlew build
works fine and returns Build SuccessfulThe text was updated successfully, but these errors were encountered: