这个错误刚刚到来,它一直在努力同步和构建,现在只是无法构建或同步gradle?
我已经尝试通过点击构建来清理构建 - >干净的建设也没有工作?现在非常恼火!!
* Where:
构建文件' /home/mikaeljohansson/AndroidStudioProjects/myproj/build.gradle'行:5
无法在存储库容器上找到参数[]的方法jcenter()。
以下是其他gradle.build文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.0.1'
compile files('libs/achartengine-1.1.0.jar')
}
这是另一个全球性的
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
答案 0 :(得分:0)
通过删除res目录结构下的地图解决了问题!