Reputation: 47
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
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