我在我的安卓项目中包含一个罐子,
build.gradle
如
implementation files('libs/dependency_a.jar');
但是这个jar文件需要依赖关系,可以从互联网上下载,但在构建时不会下载。
如何让 Gradle 自动下载这些依赖项。
谢谢。
在这种情况下,不会自动下载依赖项。必须在应用模块的build.gradle
文件中将jar
的所有依赖项指定为应用的依赖项。
android {
...
}
dependencies {
//Dependencies of your app
+
//Dependencies of your jar
}