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