无法通过Android Studio 3.0项目结构搜索依赖项

问题描述 投票:3回答:1

当我尝试通过Android Studio 3.0添加库时,我使用Android Studio 3.0

项目结构 - >依赖项 - >库依赖项

我的Android Studio是这样的:

enter image description here

android android-studio jetbrains-ide android-studio-3.0
1个回答
1
投票

如果你写下一个完全合格的依赖项

(像这样):com.facebook.stetho:stetho:1.5.0

按Enter键或单击'ok'-cta,然后再次单击'ok',

然后工作室将依赖项添加到build.gradle文件中。同步您的项目,就是这样。

您可以在添加新依赖项之前修改范围。使用implementation / annoitationProcessor / compileOnly / etc。正如所料。 (https://developer.android.com/studio/build/gradle-plugin-3-0-0-migration.html#new_configurations

但是,我认为这是直接处理(添加和删除)build.gradle文件中所有依赖项的更好方法,并使用此窗口双重检查已使用的依赖项。

我希望,它可以帮助你。

© www.soinside.com 2019 - 2024. All rights reserved.