zoukankan      html  css  js  c++  java
  • Android Studio Gradle无法获取pom文件

    错误提示:

    Error:Execution failed for task ':app:lintVitalRelease'.
    > Could not resolve all artifacts for configuration ':app:debugAndroidTestRuntimeClasspath'.
       > Could not resolve com.android.support.test:runner:1.0.2.
         Required by:
             project :app
          > Could not resolve com.android.support.test:runner:1.0.2.
             > Could not get resource 'https://dl.google.com/dl/android/maven2/com/android/support/test/runner/1.0.2/runner-1.0.2.pom'.
                > Could not GET 'https://dl.google.com/dl/android/maven2/com/android/support/test/runner/1.0.2/runner-1.0.2.pom'.
                   > Connect to dl.google.com:443 [dl.google.com/127.0.0.1] failed: Connection refused: connect
       > Could not resolve com.android.support.test.espresso:espresso-core:3.0.2.
         Required by:
             project :app
          > Could not resolve com.android.support.test.espresso:espresso-core:3.0.2.
             > Could not get resource 'https://dl.google.com/dl/android/maven2/com/android/support/test/espresso/espresso-core/3.0.2/espresso-core-3.0.2.pom'.
                > Could not GET 'https://dl.google.com/dl/android/maven2/com/android/support/test/espresso/espresso-core/3.0.2/espresso-core-3.0.2.pom'.
                   > Connect to dl.google.com:443 [dl.google.com/127.0.0.1] failed: Connection refused: connect
    

     解决方法,在Project的build.gradle里的allprojects里添加:

    maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
    
  • 相关阅读:
    SDL_mixer 播放wav
    SDL_mixer 播放mp3
    [转]音频基础知识及编码原理
    [转]QT父子与QT对象delete
    [转]QT中嵌入SDL
    [转]PCM文件格式
    [转]ffmpeg库音频解码示例
    C# 向PivotItem中添加子控件
    初识 Windows Phone 7
    C#语言使用Windows phone 中的数据数据绑定
  • 原文地址:https://www.cnblogs.com/adyyzjb/p/9559007.html
Copyright © 2011-2022 走看看