Is there any way to import a project into Android Studio fixing dependencies automatically?

Question:

I have had frequent difficulties importing projects into Android Studio. Whenever I do a new import, the IDE points out several dependencies that aren't satisfied and I have to fix them manually, making the import always too slow.

Does anyone have a tip on how to configure Android Studio to resolve at least part of the dependencies automatically.

Answer:

As @LeoSantana suggested, use Gradle, it's a "build automator".

I recommend this link: https://www.udacity.com/course/gradle-for-android-and-java–ud867 , gradle course for Android, made by Udacity.

[EDIT] For dependencies that can be added, search here: https://plugins.gradle.org

Scroll to Top