我已经制作了一些废物代码。在出现一些错误后,我会检查最新的提交。我希望重启任何没有任何障碍。但现在建设项目我收到了消息:
Waiting for device.
Target device: samsung-gt_i8190n-47900693715f5036
Uploading file
local path: /Path/to/file.apk
remote path: /path/to/file/com.example
Local path doesn't exist.
(* I've removed complete local and remote path in this post ...)
因此,当我尝试将项目与gradle文件同步时,来自编辑器的新消息到达:
Failed to refresh Gradle project 'NutriMondoProject'
Project is using an old version of the Android Gradle plug-in.
The minimum supported version is 0.7.0.
Please update the version of the dependency 'com.android.tools.build:gradle'
in your build.gradle files.
Search in build.gradle files
我觉得自己像个水里的鱼。
答案 0 :(得分:12)
您已更新至Android Studio 0.4.0
它需要gradle插件0.7。+和gradle-wrapper 1.9。
更改build.gradle
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.7.+'
}
}
然后更改你的gradle-wrapper.properties:
distributionUrl=http\://services.gradle.org/distributions/gradle-1.9-all.zip
然后将您的项目与gradle文件同步。 启动gradlew清洁以清洁您的构建。
答案 1 :(得分:3)
这是因为您将Android Studio更新为0.4.0版。
请按照以下步骤使其正常工作: