Ricardo Custodio
Ricardo Custodio

Reputation: 47

Gradle - Do not create subproject

I installed Gradle in my Eclipse and I want to create a new project without subproject or nested project. How can I do it?

-> in my settings.gradle:

rootProject.name = 'ProjectName'

include('lib') << what I want to remove from my projects to build only one project

how can I do it?

Upvotes: 3

Views: 224

Answers (1)

user7291698
user7291698

Reputation: 1990

You could try it with an older Gradle version, e.g. version 6.6. This solved the problem here: https://stackoverflow.com/a/66857125

Upvotes: 1

Related Questions