如何配置 gradle 以“离线"工作(使用缓存的依

How to configure gradle to work quot;offlinequot; (using cached dependencies)(如何配置 gradle 以“离线工作(使用缓存的依赖项))
本文介绍了如何配置 gradle 以“离线"工作(使用缓存的依赖项)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个命令行 apk 生成器,它使用相同的源代码编译大量 APK,因此这些应用程序具有相同的依赖项.

I have a command line apk generator which compiles a lot of APKs using the same source code, so these apps have the same dependencies.

在 gradle 文档中我可以看到:

In the gradle documentation I can see this:

Gradle 项目需要网络连接才能下载依赖项.

The Gradle project needs network connectivity to download dependencies.

我知道可以将 gradle 配置为离线工作,而不是下载它为其他 apk 下载的相同依赖项.如何激活这种离线模式?

I know that it is possible to configure gradle to work offline and not download the same dependencies that it has downloaded for other apks. How can this offline mode be activated?

推荐答案

Gradle 在避免重新下载工件方面做得很好,但是你可以通过 --offline 到 Gradle 以防止在构建期间访问网络.

Gradle does a good job of avoiding re-downloading artifacts, but you can pass --offline to Gradle to prevent from accessing the network during builds.

例如

gradle --offline build

如果它需要网络中没有的东西,而不是尝试获取它,你的构建将会失败.

If it needs something from the network that it doesn't have, instead of attempting to fetch it, your build will fail.

这篇关于如何配置 gradle 以“离线"工作(使用缓存的依赖项)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)
Crash on Google Play Pre-Launch Report: java.lang.NoSuchMethodError(Google Play发布前崩溃报告:java.lang.NoSuchMethodError)