-2
我在這張照片有一個錯誤的方法的Android():的Android工作室錯誤:錯誤:(22,0)找不到根項目論證
錯誤的文字是:
Android studio error:Error:(22, 0) Could not find method android() for arguments on root project
我在這張照片有一個錯誤的方法的Android():的Android工作室錯誤:錯誤:(22,0)找不到根項目論證
錯誤的文字是:
Android studio error:Error:(22, 0) Could not find method android() for arguments on root project
您正在使用錯誤的build.gradle文件。
在您的頂級文件中,您無法定義android塊。
只需在模塊/ build.Gradle文件中移動此部分即可。
android {
compileSdkVersion 17
buildToolsVersion '23.0.0'
}
dependencies {
compile files('app/libs/junit-4.12-JavaDoc.jar')
}
apply plugin: 'maven'
沒有模塊目錄 –
請將您的代碼發佈到遇到錯誤的位置。 –