Mina Fawzy
Mina Fawzy

Reputation: 21472

Android - how to export eclipse project with libraries to android studio

my tries click right at my project , choose Export ---> android ---> Generate Gradle build files

enter image description here

I stop in this point , I cant force overriding, any one know the reason

enter image description here

Upvotes: 0

Views: 147

Answers (1)

TejjD
TejjD

Reputation: 2571

The Eclipse IDE uses a different file structure for their android projects, as opposed to the files structure of the projects created through Android Studio. Regardless of the Gradle builds and so on.

Your best bet would be to create a new Android Project based on the specifications of your Eclipse project. And migrate the source code as required. As far as the libraries are concerned, you can add them directly to the Android Project.

I also found that this might be useful for your current situation. Help on Migrating from Eclipse to Android Studio (Projects).

Hope this helps.

Upvotes: 1

Related Questions