Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的 Android 项目中使用 Maven 依赖项注入。这样做的目的不是将库包含到项目中,而是在运行时绑定它们。但是,我想知道互联网连接是否很慢会发生什么?项目会崩溃吗?与我将库包含到应用程序中的情况相比,它会变慢吗?
你在这里混合了一些东西。Maven 不进行依赖注入。那是春季学期。Maven 进行构建管理,可帮助您在构建应用程序时添加正确的 jar。
编译应用程序时,会从 Internet(或您的本地存储库)下载必要的库。执行应用程序时不会这样做!Maven 可以将正确版本的正确 jar 添加到您的 jar 中(如果您配置 Maven 来执行此操作)。