作者:刺猬xiaojie | 来源:互联网 | 2023-01-31 17:25
如何解决《Androidstudio默认项目失败:错误:无法解决:com.android.support:support-v4:25.2.0》经验,为你挑选了1个好方法。
我真的只是第一次启动应用程序开发,当我创建一个新项目时,默认项目将无法构建.我曾尝试在Google和SO上查找这些错误并找到了一些,但他们的解决方案无效.鉴于我根本没有编辑过这些文件,我认为这是Android Studio未正确设置的问题,但无法解决.错误如下:
Error:Failed to resolve: com.android.support:support-v4:25.2.0
Install Repository and sync project
Open File
Show in Project Structure dialog
Error:(23, 24) Failed to resolve: com.android.support.test.espresso:espresso-core:2.2.2
Install Repository and sync project
Show in File
Show in Project Structure dialog
Error:(26, 13) Failed to resolve: com.android.support:appcompat-v7:26.+
Install Repository and sync project
Show in File
Show in Project Structure dialog
它指向的build.gradle文件如下:
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.0"
defaultConfig {
applicationId "com.extremecomputing.spotzz"
minSdkVersion 17
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.google.android.gms:play-services-maps:11.0.1'
testCompile 'junit:junit:4.12'
}
我尝试过以前的项目,我创建了一些我在网上找到的东西.比如他们曾建议+
在版本中可能会导致不可预测的版本,但那不是它.有人曾在该dependencies
部分中推荐了一些编译行,它改变了错误片刻说我需要下载一些东西,然后我就回到了原来的错误.我也试图确保SDK工具更新,它们似乎是.任何建议将不胜感激.
1> ישו אוהב אות..:
请注意,支持库从修订版25.4.0到最新版,我们需要添加google maven.正如在发行说明中所说:
重要提示:现在可以通过Google的Maven存储库获得支持库.您无需从SDK Manager下载支持存储库.有关更多信息,请参阅支持库设置.
所以你需要将google maven添加到root build.gradle中,如下所示:
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
阅读支持库设置了解更多信息.