我试图将我的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()
}
}
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
答案 0 :(得分:1)
由于我已将“全局Gradle”设置设置为“脱机工作”,因此遇到了此问题
答案 1 :(得分:0)
如果您位于防火墙后面或即使您处于禁止的国家/地区,则必须通过VPN工具绕过限制或在防火墙中添加正确的例外。 (像Psyphon这样的免费代理和弱东西都行不通!你可能想考虑购买一个好的VPN!)
问题在于正确的互联网连接,因此请仔细检查您的网络和互联网连接以及相关的任何限制。