将Eclipse项目导入Android Studio时出错

时间:2015-02-24 16:36:15

标签: android eclipse android-studio gradle android-appcompat

我正在尝试将在Eclipse中完成的项目导入Android Studio。导入时,我收到以下错误:

"There are unrecoverable errors which must be corrected first"

Library reference ../../../../workspace/android-support-v7-appcompat could not be found

我尝试将appcompat文件夹复制到项目的根目录,仍然是同样的错误。我该如何解决?

请参阅屏幕截图以了解更多详情error details

2 个答案:

答案 0 :(得分:19)

最后,我找到了一种方法..我在文本编辑器中打开了project.properties文件并删除了与appcompat相关的行。然后我设法导入项目没有错误。导入成功后,我添加了appcompat作为依赖,由Gabriele Mariotti回答。谢谢Gabriele Mariotti。

答案 1 :(得分:5)

不要'将appcompat库复制为Android Studio中的模块。

只需在app / build.gradle文件中添加此依赖项:

dependencies {
    compile "com.android.support:appcompat-v7:21.0.3"
}

项目结构如下:

root
  app
     build.gradle  <-- here
  build.gradle  //top level