In Progress
Status Update
Comments
to...@google.com <to...@google.com> #2
Disregard - after adding
enableUnitTestCoverage = false
enableAndroidTestCoverage false
Thinks started to work again.
But for what it is worth - the error message could have been more helpful.
enableUnitTestCoverage = false
enableAndroidTestCoverage false
Thinks started to work again.
But for what it is worth - the error message could have been more helpful.
gp...@gmail.com <gp...@gmail.com> #3
Well the error message is that it tried to configure jacoco task and failed, so it works for you because you disabled the feature.
So the error message is indicative of a bigger problem. Oviously, 8.2 is pretty old for us, not sure you are interested in trying 8.8.
The easiest would be to have a project reproducing the issue, if that's possible, we'll look into it.
ri...@google.com <ri...@google.com> #4
We tried bumping things up to 8.8 but that causes other problems that we need to resolve first. There was a long list of issues with name spaces and what not due to clashes across different 3rd part integrations that we have in the app.
Unfortunately we haven't had the resources to keep things up to date for a long time - and now every possible problem is just piling up...
I'll get back once we manage to upgrade to 8.8...
Unfortunately we haven't had the resources to keep things up to date for a long time - and now every possible problem is just piling up...
I'll get back once we manage to upgrade to 8.8...
gp...@gmail.com <gp...@gmail.com> #5
Apologies, at that time it was not synced. But the state I was in was independent of sync I tried syncing invalidate everything still it doesn't worked, attached a screenshot.
//root level
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.kotlin.android) apply false
alias(libs.plugins.kotlin.compose) apply false
alias(libs.plugins.android.library) apply false
alias(libs.plugins.kotlinx.serialization) apply false
alias(libs.plugins.ksp)
}
// presentation
plugins {
alias(libs.plugins.android.library)
alias(libs.plugins.kotlin.android)
alias(libs.plugins.kotlin.compose)
alias(libs.plugins.ksp)
alias(libs.plugins.kotlinx.serialization)
id("kotlin-parcelize")
}
dependencies {
implementation(project(":core"))
implementation(project(":common"))
implementation(libs.androidx.core.ktx)
implementation(libs.androidx.lifecycle.runtime.ktx)
implementation(libs.androidx.activity.compose)
implementation(platform(libs.androidx.compose.bom))
implementation(libs.androidx.ui)
implementation(libs.androidx.ui.graphics)
implementation(libs.androidx.ui.tooling.preview)
implementation(libs.androidx.material3)
testImplementation(libs.junit)
androidTestImplementation(libs.androidx.junit)
androidTestImplementation(libs.androidx.espresso.core)
androidTestImplementation(platform(libs.androidx.compose.bom))
androidTestImplementation(libs.androidx.ui.test.junit4)
debugImplementation(libs.androidx.ui.tooling)
debugImplementation(libs.androidx.ui.test.manifest)
implementation(libs.androidx.compiler)
implementation(libs.androidx.runtime)
implementation(libs.androidx.constraintlayout.compose)
implementation(libs.compose.foundataion)
implementation(libs.androidx.material.icons.extended)
implementation(libs.koin.core)
implementation(libs.koin.android)
implementation(libs.koin.androidx.compose)
//navigation
implementation(libs.androidx.navigation.compose)
//coil
implementation(libs.coil.compose)
implementation(libs.okhttp)
implementation(libs.coil.network.okhttp)
implementation(libs.ktor.serialization.kotlinx.json)
}
composeBom = "2025.01.00"
kotlin = "2.1.0"
agp = "8.9.0-alpha09"
gradle-8.11.1
Description
DESCRIBE THE ISSUE IN DETAIL:
STEPS TO REPRODUCE:
I tried downloading everything and trying to use as source to view as of now from here
IMPORTANT: Please readhttps://developer.android.com/studio/report-bugs.html carefully and supply
all required information.
Studio Build: Version of Gradle Plugin: 8.9 Version of Gradle:8.11 Version of Java:17 OS:Mac M1