You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
id("com.google.devtools.ksp") version "1.7.10-1.0.6"..
implementation("com.github.bumptech.glide:glide:4.14.0")
ksp("com.github.bumptech.glide:ksp:4.14.0")
I met the below exception.
Execution failed for task ':dialer:kspDebugKotlin'.
> Error while evaluating property 'filteredArgumentsMap' of task ':dialer:kspDebugKotlin'
> Failed to query the value of task ':dialer:kspDebugKotlin' property 'options'.
> Could not resolve all files for configuration ':dialer:kspDebugKotlinProcessorClasspath'.
> Could not find glide-parent:glide:unspecified.
Searched in the following locations:
- https://dl.google.com/dl/android/maven2/glide-parent/glide/unspecified/glide-unspecified.pom
- https://repo.maven.apache.org/maven2/glide-parent/glide/unspecified/glide-unspecified.pom
Required by:
project :dialer > com.github.bumptech.glide:ksp:4.14.0
Possible solution:
- Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
So we handled it like below and it seems to be fine. Is that right?
id("com.google.devtools.ksp") version "1.7.10-1.0.6"..
implementation("com.github.bumptech.glide:glide:4.14.0")
ksp("com.github.bumptech.glide:ksp:4.14.0") {
exclude(group="glide-parent")
}
The text was updated successfully, but these errors were encountered:
We are testing ksp.
I met the below exception.
So we handled it like below and it seems to be fine. Is that right?
The text was updated successfully, but these errors were encountered: