Android Studio无法解析Espresso 3.0.0

时间:2017-08-02 08:39:21

标签: android dependencies android-espresso

根据迄今为止的Android Espresso documentation

  

添加Espresso依赖项

     

要将Espresso依赖项添加到项目中,请完成以下步骤:

     
      
  1. 打开应用的build.gradle文件。这通常不是顶级的build.gradle文件,而是app / build.gradle。
  2.   
  3. 在依赖项中添加以下行:
  4.   
pip install ~/Downloads/mysqlclient‑1.3.10‑cp36‑cp36m‑win_amd64.whl

我创建了一个新项目,生成的app / gradle文件是这样的:

androidTestCompile 'com.android.support.test.espresso:espresso-core:3.0.0'
androidTestCompile 'com.android.support.test:runner:1.0.0'

当我将其更改为以下内容时:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.0"
    defaultConfig {
        applicationId "com.app.test"
        minSdkVersion 24
        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.+'
    testCompile 'junit:junit:4.12'
}

我收到以下错误:

  

错误:(29,24)无法解决:com.android.support.test:runner:1.0.0   
安装存储库和同步项目
  错误:(30,24)无法解决:com.android.support.test.espresso:espresso-core:3.0.0   
安装存储库和同步项目

我尝试点击“安装存储库和同步项目”链接但没有任何反应。我也尝试过查看SDK管理器,但我真的看不到任何东西。

4 个答案:

答案 0 :(得分:12)

由于评论的解决方案正在解决问题,我将其作为其他人的答案添加:

请务必将Google's maven链接添加到主build.gradle文件:

allprojects {
    repositories {
        jcenter()
        maven {
            url "https://maven.google.com"
        }
    }
}

答案 1 :(得分:1)

简单地说,
google()添加到allprojects > repositories中可以解决这个问题......

allprojects {
    repositories {
        google()
        jcenter()
    }
}

答案 2 :(得分:0)

使用这些版本

androidTestCompile 'com.android.support.test:runner:0.5'
androidTestCompile 'com.android.support.test:rules:0.5'
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2'

答案 3 :(得分:0)

您可以降级版本,有时以某种方式无法从存储库中找到目标版本。 使用IDE-UI选择最新版本:

  1. 右键单击您的项目文件夹,选择Open Module Settings
  2. 在依赖项中搜索所需的包,例如 enter image description here

这样,您将永远不会获得不可用的版本 (当然,也请记住在build.gradle中设置适当的存储库)