如何从eclipse导入到android studio?

时间:2015-03-27 09:23:11

标签: android android-studio

我刚接触Android Studio ...我正在使用eclipse,我的项目与appcompat v7相关联,我观看了如何从eclipse将项目文件夹导入android studio的视频,但我想知道怎么样appcompat v7我忘记了什么或者什么?

2 个答案:

答案 0 :(得分:0)

为了解决这个问题,请查看Eclipse项目中的project.properties或.classpath文件中的refs并删除/注释掉它们,例如

<classpathentry combineaccessrules="false" kind="src" path="/android-support-v7-appcompat"/>

答案 1 :(得分:0)

使用文件&gt;导入项目。导入之后转到build.gradle并粘贴:

dependencies {
  compile fileTree(dir: 'libs', include: ['*.jar'])
  compile 'com.android.support:appcompat-v7:21.0.3'
}