无法解析 com.huawei.agconnect:agcp:1.6.0.300
Could not resolve com.huawei.agconnect:agcp:1.6.0.300
需要帮助解决 HMS SDK 的问题。
> Could not get resource
> 'https://dl.bintray.com/android/android-tools/com/huawei/agconnect/agcp/1.6.0.300/agcp-1.6.0.300.pom'.
> > Could not GET 'https://dl.bintray.com/android/android-tools/com/huawei/agconnect/agcp/1.6.0.300/agcp-1.6.0.300.pom'.
> Received status code 502 from server: Bad Gateway
build.gradle:
repositories {
google()
jcenter()
maven { url 'https://dl.bintray.com/android/android-tools' }
maven {url 'https://developer.huawei.com/repo/'}
}
取自此处
Could not find com.huawei.agconnect:agcp:1.0.0.300
“看来您没有添加应用程序 gradle 配置。
在 gradle 文件中添加这些行后尝试
buildscript {
repositories {
maven { url 'http://developer.huawei.com/repo/' }
}
dependencies {
classpath 'com.huawei.agconnect:agcp:1.2.0.300'
}
}
allprojects {
repositories {
maven { url 'http://developer.huawei.com/repo/' }
}
}
或那里的其他选项之一..
Received status code 502 from server: Bad Gateway
这可能是因为gradle处于离线模式或当前网络受限。因此,建议您检查 gradle 配置和网络设置。
buildscript {
repositories {
google()
jcenter()
// Configure the Maven repository address for the HMS Core SDK.
maven {url 'https://developer.huawei.com/repo/'}
}
dependencies {
...
// Add the AppGallery Connect plugin configuration. You are advised to use the latest plugin version.
classpath 'com.huawei.agconnect:agcp:1.6.0.300'
}
}
allprojects {
repositories {
google()
jcenter()
// Configure the Maven repository address for the HMS Core SDK.
maven {url 'https://developer.huawei.com/repo/'}
}
}
关于如何配置build.gradle文件的详细信息,请参考this。
需要帮助解决 HMS SDK 的问题。
> Could not get resource
> 'https://dl.bintray.com/android/android-tools/com/huawei/agconnect/agcp/1.6.0.300/agcp-1.6.0.300.pom'.
> > Could not GET 'https://dl.bintray.com/android/android-tools/com/huawei/agconnect/agcp/1.6.0.300/agcp-1.6.0.300.pom'.
> Received status code 502 from server: Bad Gateway
build.gradle:
repositories {
google()
jcenter()
maven { url 'https://dl.bintray.com/android/android-tools' }
maven {url 'https://developer.huawei.com/repo/'}
}
取自此处
Could not find com.huawei.agconnect:agcp:1.0.0.300
“看来您没有添加应用程序 gradle 配置。
在 gradle 文件中添加这些行后尝试
buildscript {
repositories {
maven { url 'http://developer.huawei.com/repo/' }
}
dependencies {
classpath 'com.huawei.agconnect:agcp:1.2.0.300'
}
}
allprojects {
repositories {
maven { url 'http://developer.huawei.com/repo/' }
}
}
或那里的其他选项之一..
Received status code 502 from server: Bad Gateway
这可能是因为gradle处于离线模式或当前网络受限。因此,建议您检查 gradle 配置和网络设置。
buildscript {
repositories {
google()
jcenter()
// Configure the Maven repository address for the HMS Core SDK.
maven {url 'https://developer.huawei.com/repo/'}
}
dependencies {
...
// Add the AppGallery Connect plugin configuration. You are advised to use the latest plugin version.
classpath 'com.huawei.agconnect:agcp:1.6.0.300'
}
}
allprojects {
repositories {
google()
jcenter()
// Configure the Maven repository address for the HMS Core SDK.
maven {url 'https://developer.huawei.com/repo/'}
}
}
关于如何配置build.gradle文件的详细信息,请参考this。