3

我在网上下载了一些示例 Android 项目。导入 android studio 但无法正常工作。举个例子http://developer.android.com/training/implementing-navigation/lateral.html

Android studio file -> Import Project Project 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.

而这个观点

在此处输入图像描述

我使用安卓工作室 0.3.0

4

1 回答 1

0

Android Studio 1 需要 gradle-plugin 1.0.0。

更新您的 build.gradle 文件:

buildscript {
  ...
  dependencies {
        classpath 'com.android.tools.build:gradle:1.0.0'
  } 
}
于 2015-02-07T11:54:30.097 回答