gpt4 book ai didi

android - Gradle 构建错误 : Failed to resolve:

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:41:27 24 4
gpt4 key购买 nike

我刚刚下载了 Android Studio 并创建了一个新项目,但出现了 gradle 构建错误:

Failed to resolve: com.android.support.test.espresso-core:2.2.2

Failed to resolve: com.android.support.appcompat-v7:25.3.1

在以管理员身份启动 android studio 时,通过重新安装 SDK Tools + Repository + API 解决了此错误。

我已经安装了我想要构建的 API 级别 25,并下载了 SDK 构建工具。我也已经下载了支持库

这是我的应用文件:

apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion '25.0.3'
defaultConfig {
applicationId "com.jtsalas.mirrorcontrol"
minSdkVersion 25
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_6
targetCompatibility JavaVersion.VERSION_1_7
}
productFlavors {
}
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
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:25.3.1'
testCompile 'junit:junit:4.12'
}

build.gradle:

// 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:2.3.2'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
jcenter()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

最佳答案

在 SDK 管理器中,确保您同时安装了 Android 支持存储库和 Google 存储库并且是最新的。然后,您应该能够在/extras/android/m2repository 目录的子文件夹中找到相关 Artifact

关于android - Gradle 构建错误 : Failed to resolve:,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44148382/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com