Eclipse Android and gitignore
Eclipse Android and gitignore
哪些文件/文件夹可以安全地忽略并不包含在git中?
我复制了一个不错的项目,删除了它的gen和bin文件夹并尝试运行应用程序。Android启动窗口显示,“您的项目包含错误,请在运行应用程序之前修复这些错误。”在包资源管理器中,项目左侧的图标上有一个红色的X。 尽管在Windows Explorer中不存在gen文件夹,但在包资源管理器中确实存在。
admin 更改状态以发布 2023年5月25日
有些文件类型应该被忽略
# built application files *.apk *.ap_ # files for the dex VM *.dex # Java class files *.class # generated files bin/ gen/ # Local configuration file (sdk path, etc) local.properties # Eclipse project files .classpath .project # Proguard folder generated by Eclipse proguard/ # Intellij project files *.iml *.ipr *.iws .idea/