FAILURE: Build failed with an exception.
* Where:
Settings file 'D:\Moji projekti\spotted_mobile_app\app\android\settings.gradle' line: 3
* What went wrong:
A problem occurred evaluating settings 'android'.
> Could not get unknown property 'com' for settings 'android' of type org.gradle.initialization.DefaultSettings.
Please never anywhere share screenshots of text if you only want to share the text and not something additional like colors or IDE annotations. Text in images is hard to read, especially on mobile, very hard to copy, and nearly impossible to search for.
Besides that, a general recommendation. Switch to Kotlin DSL. By now it is the default DSL, you immediately get type-safe build scripts, actual helpful error messages if you mess up the syntax, and amazingly better IDE support if you use a good IDE like IntelliJ IDEA or Android Studio.
Your problem is, that in the Groovy DSL the com
is interpreted as property, not as part of the package name.
If you would do an import ...
of the class it would work.
But actually you should not need to use the class file anyway.
Just doing reactSettings { ... }
should usually work just fine.