How to get the list of installed/non-installed dependencies in Android Studio

2k Views Asked by At

I am currently using some libraries (e.b. material design lib) to create apps. I want to set the minimum SDK to 5.0, but it cannot be done because the version of that library is higher.

My question is how can I know the list of installed/non-installed dependencies(e.g. com.android.support:design) provided by Google in android studio(like SDK manager) or not?

Honestly, I was using the Eclipse IDE for developing android apps, and now I switch to Android Studio. It is difficult to me to use Android Studio. Is there any resources to learn more detailed about the usage of Android Studio?

1

There are 1 best solutions below

6
UkFLSUI On BEST ANSWER

My question is how can I know the list of installed/non-installed dependencies provided by Google in android studio(like SDK manager) or not?

At first make sure in the left panel Project is selected.

Then right-click on your appropriate project name and select Open Module Settings

There you will see the Dependencies tab that you were searching for. There you will explore the options to add or remove dependencies or shifting them up or down in the easiest way. Hope you will find Android Studio more interesting then Eclipse gradually.

Is there any resources to learn more detailed about the usage of Android Studio?

The official android developer site of Google is well enough to learn Android Studio in details. Everything is there. Still you can also go for tutorialspoint tutorial about Android Studio.

Links:

https://developer.android.com/training/index.html

https://www.tutorialspoint.com/android/android_studio.htm