Using the gradle project in both Eclipse and IDEA

I have an Android project created in Android Studio. It works great in Android Studio, IDEA and builds a machine. Now we have several new developers who work in Eclipse, and I can not configure it. Is it possible to convert a gradle project (android studio) to an Eclipse IDE?

+4
source share
2 answers

You will need to maintain the build separately in both Gradle and Eclipse; Eclipse cannot use the Android Gradle constructor natively. This is on our list of things to implement, but we don’t have a roadmap yet.

It will be simpler if you use a directory structure like Eclipse and adapt the Gradle build file to work with it. See Maintaining a directory structure during Android Studio import .

+4
source

or

+1
source

Source: https://habr.com/ru/post/1527512/


All Articles