我是Android應用程序開發新手。我正在嘗試使用TabLayout創建一個Android應用程序,並在build.gradle文件中添加了以下依賴項。Gradle同步失敗:無法找到方法compile()參數[com.android.support:appcompat-v7:25.3.1]
dependencies {
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:support-v4:25.3.1'
testCompile 'junit:junit:4.12'
}
但上運行的應用程序,我得到如下
Error:(27, 0) Gradle DSL method not found: 'compile()' Possible causes:
The project 'MyFirstapp' may be using a version of Gradle that does not contain the method. Open Gradle wrapper file The build file may be missing a Gradle plugin. Apply Gradle plugin
爲什麼這個問題有什麼建議,建立自己的錯誤。我可以從Android Studio安裝插件,但我不知道要安裝哪個插件。
http://stackoverflow.com/questions/27156428/getting-error-gradle-dsl-method-not-found-compile-when-syncing-build-grad – Steve