Android Studio导入项目错误

时间:2013-11-06 15:54:58

标签: android

我在网上下载了一些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.

这个观点

enter image description here

我使用android studio 0.3.0

1 个答案:

答案 0 :(得分:0)

Android Studio 1需要gradle-plugin 1.0.0。

更新build.gradle文件:

buildscript {
  ...
  dependencies {
        classpath 'com.android.tools.build:gradle:1.0.0'
  } 
}