Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio is not using gradle to build my projects

I imported a project from Eclipse and android studio is not using my gradle scripts to build the project. Anyone else having this issue? Is there anyway to force Android Studio to use gradle to build my project.

like image 353
Maurycy Avatar asked Feb 16 '23 03:02

Maurycy


1 Answers

If you import an existing project with no gradle configuration, Android Studio will use the old build system. If you want to use gradle, you should follow the instructions in the documentation :

http://developer.android.com/sdk/installing/migrate.html

like image 163
Dalmas Avatar answered Mar 04 '23 04:03

Dalmas