我正面臨着一個驚人的錯誤。在安裝android studio 2.2.3之後,由於gradle錯誤,我無法構建我的第一個項目。我甚至嘗試使用Maven鏈接,但我離線使用我的PC。以下是我的gradle腳本:android 2.2.3中的gradle sync錯誤
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.example.samim.myapplication"
minSdkVersion 17
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
androidTestCompile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
androidTestCompile 'com.android.support:appcompat-v7:25.1.1'
testCompile 'junit:junit:4.12'
}
我也發佈了一個關於錯誤的圖像。
After doing clean build and rebuild
你在設置中檢查了'離線工作嗎?它在'設置>>構建,執行,部署>> Gradle'如果這樣取消選中它,連接到互聯網並與項目文件同步gradle – d1vivek681065
不,我沒有離線檢查。自我安裝以來,我在線。其實這是我乾淨的第二次安裝。 – SAM