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)
Caused by groovy.lang.MissingPropertyException Could not get unknown property 'android' for project ':lib1' of type org.gradle.api.Project
To solve my problem here: Applying JaCoCo to all Android Studio gradle modules, I applied the solution here. This works fine so far for modules with
plugins {
id("com.android.library")
}...
Edna Krabappel
Votes: 0
Answers: 1
How to run JaCoCo in other Android Studio sub modules?
I have an Android Studio Project with an app module and several modules as lib (see my settings.gradle):
rootProject.name = "MyApp"
include ":app"
include ":lib1"
inclu...
Edna Krabappel
Votes: 0
Answers: 1
Merge coverage unit and integration test result generated with jacoco-report-aggregation plugin on gradle 7.4
I am migrating my project to Gradle 7.4 and i would like to use the new plugin jacoco-report-aggregation to generate unit and integration test coverage report perfectly merged to be sent to sonarqube...
Gerald LEVI
Votes: 0
Answers: 1
Is it possible to Merge two multimodule project jacoco report
We want to update the gitHub pr with jacoco coverage value. Our repo structure is like below,
Function1
|___ Module1
|___ Module2
|___Function1JacocoAggregatereport
Function2
|__ Modul...

Murugesh Subramaniam
Votes: 0
Answers: 0