我在网上下载了一些Android项目示例。 导入android工作室但不工作。 举个例子http://developer.android.com/training/implementing-navigation/lateral.html
Android工作室文件 - >导入项目 项目gie这个错误
Migrate Project to Gradle?
This project does not use the Gradle build system. We recommend that you migrate to using the Gradle build system.
More Information about migrating to Gradle
Don't show this message again.
这个观点
我使用android studio 0.3.0
答案 0 :(得分:0)
Android Studio 1需要gradle-plugin 1.0.0。
更新build.gradle文件:
buildscript {
...
dependencies {
classpath 'com.android.tools.build:gradle:1.0.0'
}
}