Eclipse 工程迁移到 Android Studio

【Eclipse 工程迁移到 Android Studio】高斋晓开卷,独共圣人语。这篇文章主要讲述Eclipse 工程迁移到 Android Studio相关的知识,希望能为你提供帮助。

目标:迁移成功,并成功正常运行!
附加:同步视频在文章后面!
两种方式:1. 用Gradle导出,在Android Studio中用Gradle导入 (不推荐)
2. 用Android Studio 直接导入Eclipse 工程 (推荐)
我以第二种方式.
步骤:
  1. Eclipse 工程(主工程+依赖的第三方库)
  2. 导入主工程(依赖的库不用理会,Studio会自动导入的)
  3. 导入后等待build(可能会比较慢,推荐SSD)
  4. 会出现很多的错误,慢慢排查,一个一个的看日志
  5. Error1:重复的资源文件(String),可以全局搜索看看是不是重复了,AS是不让重复定义资源的.
  6. Error2:注解**@null**依赖错误,添加compile ‘com.android.support:support-annotations:19.1.0‘
  7. ok,正常运行了.
  8. Error附加:清单文件报错:
    在根标签的命名空间后添加xmlns:tools="http://schemas.android.com/tools"
    < application android:name="com.fanwe.app.App" android:allowBackup="true" android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@style/FanweTheme" tools:replace="icon, label,theme"> //Android Studio会引导你使用tools标签来进行设置:tools:replace="icon, label,theme"

结束:其实第二种方式还是很简单的,没什么特别要注意的地方,对了,还有一个文件需要注意,因为有些文件AS没有复制过来而是忽略了他们.
import-summary.txt中有Ignored Files:里面注明具体哪一类型的文件会被Android Studio忽略.


    推荐阅读