我是Android新手,我安装了Android Studio 1.4.1 ,我收到了以下错误。我可以解决这些错误吗?
Gradle Sync
Error:(24, 13) Failed to resolve: com.android.support:appcompat-v7:20.+
<a href="install.m2.repo">Install Repository and sync project</a><br><a href="openFile:C:/Users/Admin/AndroidStudioProjects/MyFirstApp/app/build.gradle">Show in File</a><br><a href="open.dependency.in.project.structure">Show in Project Structure dialog</a>
Gradle Build
Error:A problem occurred configuring project ':app'.
> Could not resolve all dependencies for configuration ':app:_debugCompile'.
> Could not find any matches for com.android.support:appcompat-v7:20.+ as no versions of com.android.support:appcompat-v7 are available.
Searched in the following locations:
https://jcenter.bintray.com/com/android/support/appcompat-v7/maven-metadata.xml
https://jcenter.bintray.com/com/android/support/appcompat-v7/
Required by:
MyFirstApp:app:unspecified
的build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 20
buildToolsVersion "20.0.0"
defaultConfig {
applicationId "com.example.admin.myfirstapp"
minSdkVersion 15
targetSdkVersion 20
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:20.+'
}
答案 0 :(得分:2)
你是否在防火墙后面?您可能需要在项目build.gradle中执行此操作:
repositories {
jcenter {
url "http://jcenter.bintray.com/"
}
}
答案 1 :(得分:0)
我遇到了同样的问题,我的问题是运行工作室android的用户没有权限影响android的根目录。在我的例子中,我使用以下命令为该目录授予了权限:
chdown -R myuser /opt/android-studio/