Reputation: 1557
Where should I put my *.gwt.xml file, so the gwt module selection will find it? I've tried to put it directly in the project but it's not working. And also, it is the same .gwt.xml find that I find in the main project, in the src directory?
(I'm using libgdx)
Upvotes: 0
Views: 101
Reputation: 46841
Read here about GWT Project Organization.
Read about Loading modules mentioned in above link.
Module XML files should reside in your project's root package.
Snapshot of my sample GWT project
Upvotes: 2
Reputation: 3151
I do not know about libgdx but the module xml is placed under the module package. So if the package is com.myApp for example you just put the xml there.
Upvotes: 1