gpt4 book ai didi

android - Gradle 无法解析 otto 库

转载 作者:太空宇宙 更新时间:2023-11-03 11:43:56 26 4
gpt4 key购买 nike

我尝试嵌入 Otto图书馆,which exists at the Maven Central .

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.6.3'

}
}

apply plugin: 'android'

dependencies {
compile 'com.google.android.gms:play-services:4.0.30'
compile 'com.android.support:support-v13:19.0.0'
compile 'com.squareup:otto:1.3.4'
}

但我得到了异常(exception):

A problem occurred configuring root project 'sample-project'.
> Failed to notify project evaluation listener.
> Could not resolve all dependencies for configuration ':_DebugCompile'.
> Could not find com.squareup:otto:otto:1.3.4.
Required by:
:sample-project:unspecified

我尝试刷新依赖项(gradle --refresh-dependencies) 但它没有帮助。

最佳答案

您需要告诉 gradle 在哪里可以找到它。

repositories {
mavenCentral()
}

请注意,buildscript { ... } 中现有的 repositories { ... } 只是为构建类路径本身配置存储库,而不是您的项目,所以把这个新元素放在 apply plugin ...

关于android - Gradle 无法解析 otto 库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20539888/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com