Reputation: 21472
my tries click right at my project , choose Export ---> android ---> Generate Gradle build files
I stop in this point , I cant force overriding, any one know the reason
Upvotes: 0
Views: 147
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