【发布时间】:2016-09-03 11:15:21
【问题描述】:
我愿意将 Acra 添加到我的 android studio 项目中。
但是,虽然tutorial 看起来很简单,但我无法获取依赖项,并且出现错误:
无法解决:ch.acra:acra:4.8.5
成绩文件:
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'com.google.gms:google-services:1.5.0'
}
}
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
compile 'com.android.support:support-v4:21.+'
compile 'ch.acra:acra:4.8.5'
compile 'com.google.android.gms:play-services-location:8.3.0'
compile ('com.google.android.gms:play-services-analytics:8.3.0') {
exclude module: 'support-v4'
}
}
我错过了什么?
我也在终端得到这个:
* What went wrong:
A problem occurred configuring root project 'WifiCapture'.
> Could not resolve all dependencies for configuration ':_debugCompile'.
> Could not find ch.acra:acra:4.8.5.
Searched in the following locations:
file:/Users/myuser/Library/Android/sdk/extras/android/m2repository/ch/acra/acra/4.8.5/acra-4.8.5.pom
file:/Users/myuser/Library/Android/sdk/extras/android/m2repository/ch/acra/acra/4.8.5/acra-4.8.5.jar
file:/Users/myuser/Library/Android/sdk/extras/google/m2repository/ch/acra/acra/4.8.5/acra-4.8.5.pom
file:/Users/myuser/Library/Android/sdk/extras/google/m2repository/ch/acra/acra/4.8.5/acra-4.8.5.jar
Required by:
:MyApp:unspecified
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
【问题讨论】:
标签: android gradle dependencies android-gradle-plugin acra