无法解决':app @ debug / compileClasspath':无法解析com.android.support:multidex:1.0.3

时间:2018-03-17 08:41:59

标签: android android-gradle

我试图将我的Android Studio 2.2.3更新为版本3,但是当我这样做时,以下错误阻止了构建过程:

  

无法解决':app @ debug / compileClasspath':无法解析com.android.support:multidex:1.0.3。

     
    

无法解析com.android.support:multidex:1.0.3。     要求:         项目:app

         
      

无法解析com.android.support:multidex:1.0.3。

             
        

无法解析POM https://dl.google.com/dl/android/maven2/com/android/support/multidex/1.0.3/multidex-1.0.3.pom

                 
          

已经看过doctype。

        
      
    
  

build.gradle(模块:应用):

buildscript {
    repositories {
        jcenter()
        flatDir {
            dirs 'libs'
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
    }
}

apply plugin: 'com.android.application'

repositories {
    jcenter()
    flatDir {
        dirs 'libs'
    }
    google()
}

android {

    compileSdkVersion 26
    buildToolsVersion '26.0.2'
    useLibrary 'org.apache.http.legacy'
    defaultConfig {
        applicationId "My.App.Id"
        minSdkVersion 17
        targetSdkVersion 26
        versionCode 111
        versionName "1.1.1"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        multiDexEnabled true
    }

    dexOptions {
        javaMaxHeapSize "4g"
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_7
        targetCompatibility JavaVersion.VERSION_1_7
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
        debug {
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.android.support:appcompat-v7:+'
    compile 'com.android.support:design:+'
    compile 'com.android.support:cardview-v7:+'
    compile 'com.android.support:recyclerview-v7:+'
    compile 'com.github.rahatarmanahmed:circularprogressview:+'
    compile files('libs/devicedriverslib.jar')
    compile files('libs/allutils.jar')
    compile 'com.android.support:multidex:1.0.3'
}

build.gradle(项目:MyProjectName)

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'

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

}

allprojects {
    repositories {
        google()
        jcenter()
    }

}

已安装的构建工具 enter image description here

gradle-wrapper.properties:

#Tue Oct 31 12:15:03 IST 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip

2 个答案:

答案 0 :(得分:1)

由于我已将“全局Gradle”设置设置为“脱机工作”,因此遇到了此问题

  1. 单击文件>设置(在macOS上, Android Studio>首选项)以打开设置对话框。
  2. 在左窗格中,展开构建,执行,部署,然后单击 Gradle
  3. 在“全局Gradle”设置下,取消选中“ 离线工作”复选框。
  4. 点击应用确定,使更改生效。
  5. 重建Gradle

来源:Configure Android Studio

答案 1 :(得分:0)

如果您位于防火墙后面或即使您处于禁止的国家/地区,则必须通过VPN工具绕过限制或在防火墙中添加正确的例外。 (像Psyphon这样的免费代理和弱东西都行不通!你可能想考虑购买一个好的VPN!)

问题在于正确的互联网连接,因此请仔细检查您的网络和互联网连接以及相关的任何限制。