我安装了新的Android Studio 1.0.2。打开我的第一个现有的android项目时出现以下错误:
Gradle' MyApplication '项目刷新失败
Error:Artifact 'support-v4.jar (com.android.support:support-v4:21.0.3)' not found.
在以下位置搜索:file:/C:/Users/Ntokozo/AppData/Local/Android/sdk/extras/android/m2repository/com/android/support/support-v4/21.0.3/support-v4-21.0.3.jar
如果我导航到搜索到的位置,我发现了两个jar文件:support-v4-21.0.3-sources.jar and support-v4-21.0.3-javadoc.jar
这是我的build.gradle文件:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
App文件夹下的Gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.example.ntokozo.myapplication"
minSdkVersion 15
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.android.support:support-v4:21.0.3'
}
提前感谢您,请回答我是新手,我可能不了解高级功能。
答案 0 :(得分:0)
重新安装Windows操作系统和新的Android Studio设置后,问题就消失了。我一开始不知道是什么问题。