2016-03-10 39 views
3

我更新了Android Studio來預覽2.1和gradle這個更新以及項目刷新失敗錯誤 - Android電子工作室2.1預覽

dependencies { 
    classpath 'com.android.tools.build:gradle:2.1.0-alpha1' 
    classpath 'com.google.gms:google-services:2.1.0-alpha1' 
} 

我得到這個消息:

test

當我點擊再試一次上攻顯示,我得到這個消息

Gradle 'TestProject' Project refresh failed 
    Error:exception during working with external system: 

有人遇到並解決了這個問題嗎?

回答

0

變化classpath中

dependencies { 
     classpath 'com.android.tools.build:gradle:2.1.0-alpha1' 
     classpath 'com.google.gms:google-services:2.0.0-alpha6' 
     // NOTE: Do not place your application dependencies here; they belong 
     // in the individual module build.gradle files 
    } 
相關問題