如何在 Android Studio 中获取 installed/non-installed 依赖项列表

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

我目前正在使用一些库(e.b。material 设计库)来创建应用程序。 我想把最低SDK设置为5.0,但是因为那个库的版本比较高,所以做不到。

我的问题是如何知道 android studio 中 Google 提供的 installed/non-installed 依赖项列表(例如 com.android.support:design)(例如 SDK 管理器)还是不是?

老实说,我使用 Eclipse IDE 开发 android 应用程序,现在我切换到 Android Studio。我很难使用 Android Studio。 AndroidStudio的使用方法有没有资源可以更详细的了解一下?

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?

首先确保左侧面板中的 Project 是 selected。

然后右击你合适的项目名称和select Open Module Settings

在那里您会看到您正在搜索的 Dependencies 选项卡。在那里,您将探索添加或删除依赖项或以最简单的方式向上或向下移动它们的选项。希望您会逐渐发现 Android Studio 比 Eclipse 更有趣。

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

Google 的官方 android 开发者网站很好,可以详细了解 Android Studio。一切都在那里。不过,您也可以查看有关 Android Studio 的 tutorialspoint 教程。

链接:

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

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