python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Developing an Android library but its dependencies are not automatically downloaded by the dependent app
I am developing an Android library, which has some dependencies to other library:
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:app...

Ricky Mo
Votes: 0
Answers: 1
Gradle - Do adding the same dependency to different modules increase build time?
If I have moduleA and moduleB, which both implement dependencyA and dependencyB. Will declaring both dependencies increase load time for moduleB if moduleA was already compiled?
For more information,...

htafoya
Votes: 0
Answers: 0
Gradle 6.8 implementation scope mapped to runtime in the Maven pom.xml. Shouldn't it be compile?
In this Gradle 6.8 build.gradle there are a bunch of compile dependencies.
plugins {
id 'java'
}
dependencies {
compile "xxx:yyy.1.0.0"
}
With gradle install the generated pom loo...
codependent
Votes: 0
Answers: 0
android, gradle, how to force to use a old com.google.firebase:firebase-messaging: dependence version
Having dependency in the app
api 'com.google.firebase:firebase-messaging:20.0.1'
But the app has dependency on other sdk, which depends on new version
api 'com.google.firebase:firebase-messaging:21.1...
lannyf
Votes: 0
Answers: 0