最近我更新了Android Studio和SDK。 在重建我的应用程序项目时,我遇到了以下错误...
出了什么问题: 配置项目':app'时出现问题。
无法解析配置':app:_debugCompile'的所有依赖项。 找不到com.android.support:appcompat-v7:23.0.0。 在以下位置搜索: https://jcenter.bintray.com/com/android/support/appcompat-v7/23.0.0/appcompat-v7-23.0.0.pom https://jcenter.bintray.com/com/android/support/appcompat-v7/23.0.0/appcompat-v7-23.0.0.jar file:/ C:/ android new SDK / extras / android / m2repository / com / android / support / appcompat -v7 / 23.0.0 / appcompat-v7-23.0.0.pom file:/ C:/ android new SDK / extras / android / m2repository / com / android / support / appcompat -v7 / 23.0.0 / appcompat-v7-23.0.0.jar file:/ C:/ android new SDK / extras / google / m2repository / com / android / support / appcompat -v7 / 23.0.0 / appcompat-v7-23.0.0.pom file:/ C:/ android new SDK / extras / google / m2repository / com / android / support / appcompat -v7 / 23.0.0 / appcompat-v7-23.0.0.jar 要求: AppOne:应用程序:未指定的
尝试: 使用--stacktrace选项运行以获取堆栈跟踪。使用--info或--debug选项运行以获得更多日志输出。
建立失败
总时间:4.913秒 .................................................. .............
我的Gradle文件配置如下..
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.0"
defaultConfig {
applicationId "com.example.myapplication"
minSdkVersion 9
targetSdkVersion 23
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:23.0.0'
}
答案 0 :(得分:0)
使用android sdk manager并更新
它将解决问题。
答案 1 :(得分:0)
您需要先安装/更新Android支持库和Android支持存储库,然后重建项目。