Migrating an Eclipse Project to a Studio Project

I am trying to import an android project created in eclipse into android studio. This main project also refers to another library project in the same eclipse workspace. When I import the main project into android studio, the library project is automatically imported as a subproject (or we will call it a module) in the main project.

+4
source share
1 answer

In new versions of Android Studio, the best way to attract an Eclipse / ADT project is to import it directly into Android Studio; We initially recommended exporting it from Eclipse to Gradle, but we did not update ADT often enough to keep up with Android Studio.

In any case, if you select "Import project" in the "File" menu or on the "Welcome" screen when launching Android Studio, it should go through a specialized wizard that will offer you to copy files to the new directory structure, instead of importing them in place, and will suggest fixing some common things, such as converting dependencies to Maven-style, etc.

, . , ADT, IntelliJ , Gradle. , :

AndroidManifest.xml. : .project .classpath Eclipse res src. , , , .

+4

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


All Articles