How to enable automatic download of missing Androi

2019-03-15 22:16发布

During Google I/O 2016's What's new in Android development tools a great new feature was quickly mentioned: Android Gradle plugin can now automatically download missing dependencies from Android SDK.

It's also mentioned in Android Gradle plugin 2.2.0-alpha4 release notes.

How do I enable it?

2条回答
神经病院院长
2楼-- · 2019-03-15 23:07

In gradle.properties file in your project's root folder add the following line:

android.builder.sdkDownload=true

Note: at the time of writing this option is experimental. It looks like so far it downloads missing build tools and platforms, but doesn't attempt to update repositories where the support libraries or Google Play Services libraries live according to a bug report/feature request.

Edit: since now support libraries and other libraries from Google live on maven.google.com and not in local repositories, the note above isn't as important.

查看更多
可以哭但决不认输i
3楼-- · 2019-03-15 23:10

I did:

gradle --refresh-dependencies

on the terminal, and it solved the problem.

查看更多
登录 后发表回答