Is there a way to create multiple projects on Gradle?

I have a project that looks like this:

2021-05-13_11h31_29

The settings.gradle file covers the whole project into the root gradle.build:

rootProject.name = ‘RootProject’

The existing gradle.build is very long and causes conflicts with my tasks.

Is there a way I could create an independent gradle.build file for my package?

I tried adding another “gradle.build” inside the “my package” folder and it throws errors about “duplicate content roots detected”