我正在開發一個移動應用程序項目,但通常當我嘗試運行該應用程序時,它給了我以下錯誤:無法解析com.android.tools.build:gradle:2.2.3
Error:A problem occurred configuring root project 'projectName'. Could not resolve all dependencies for configuration ':classpath'. Could not resolve com.android.tools.build:gradle:2.2.3. Required by: :projectName:unspecified No cached version of com.android.tools.build:gradle:2.2.3 available for offline mode.
我已經嘗試了許多不同的事情,包括取消選擇設置中的離線工作複選框,然後關閉並重新打開Android Studio,但似乎沒有解決問題。它可能會連續幾次建成,但同樣的錯誤不斷彈出。然後,我必須嘗試構建和製作應用的變體,或退出並重新開放Android Studios。沒有任何一貫的作品,任何洞察什麼可能會導致這個問題,以及如何可以修復,將不勝感激。
***更新:根據要求我增加了我下面的應用程序內容的gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.1"
useLibrary 'org.apache.http.legacy'
dexOptions {
javaMaxHeapSize "8g"
}
defaultConfig {
applicationId "com.example"
minSdkVersion 15
targetSdkVersion 24
versionCode 1
versionName "1.0"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug{
debuggable true
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support:design:24.2.1'
compile 'com.google.android.gms:play-services:9.4.0'
compile 'com.android.support:recyclerview-v7:24.2.1'
compile 'com.android.support:support-v4:24.2.1'
compile files('libs/gson-2.2.2.jar')
compile group: 'cz.msebera.android' , name: 'httpclient', version: '4.4.1.1'
compile 'com.facebook.stetho:stetho:1.3.1'
compile 'com.loopj.android:android-async-http:1.4.9'
}
可能需要發佈您的build.gradle文件 –