I am trying to sync a Kotlin project from GitHub in Android Studio. During the build process first I get the following warning:
"Warning:project ':app': Unable to build Kotlin project configuration Details: org.gradle.api.internal.artifacts.ivyservice.DefaultLenientConfiguration$ArtifactResolveException: Could not resolve all files for configuration ':app:debugImplementationDependenciesMetadata'. Caused by: org.gradle.internal.resolve.ArtifactNotFoundException: Could not find sqlite.jar (androidx.sqlite:sqlite:2.0.1). Searched in the following locations: https://dl.google.com/dl/android/maven2/androidx/sqlite/sqlite/2.0.1/sqlite-2.0.1.jar"
Then I get the following error:
ERROR: Failed to resolve: sqlite Affected Modules: app
when I try to rebuild it by clicking make project, I get a different error:
Could not find sqlite.jar (androidx.sqlite:sqlite:2.0.1). Searched in the following locations: https://dl.google.com/dl/android/maven2/androidx/sqlite/sqlite/2.0.1/sqlite-2.0.1.jar
I checked the following question:
and added google maven to my root but no difference.