Caused by: org.gradle.internal.resolve.ModuleVersionNotFoundException: Could not find com.huawei.hms.LocationLiteSdk:core:2.10.0.300.
时间: 2024-01-27 16:02:06 浏览: 129
Tess, if broken it is fix it you should
This error is indicating that the version of the "com.huawei.hms.LocationLiteSdk" library you are trying to use (version 2.10.0.300) could not be found by Gradle during the build process.
There are a few potential reasons for this error:
1. The library version may not exist - Double-check that the version number is correct and that the library is available in the Maven repository you are using.
2. Gradle may not be able to access the repository - Ensure that the repository containing the library is correctly configured in your project's Gradle build file.
3. There may be a network issue - If the repository is hosted remotely, check that your network connection is stable and able to access the repository.
To resolve this error, try the following steps:
1. Double-check the library version number and ensure that it is correct.
2. Check that the repository containing the library is correctly configured in your project's Gradle build file.
3. Ensure that your network connection is stable and able to access the repository.
4. If the library version does not exist, try using a different version or contact the library provider for assistance.
阅读全文