Eclipse Android and gitignore

15 浏览
0 Comments

Eclipse Android and gitignore

哪些文件/文件夹可以安全地忽略并不包含在git中?

我复制了一个不错的项目,删除了它的gen和bin文件夹并尝试运行应用程序。Android启动窗口显示,“您的项目包含错误,请在运行应用程序之前修复这些错误。”在包资源管理器中,项目左侧的图标上有一个红色的X。 尽管在Windows Explorer中不存在gen文件夹,但在包资源管理器中确实存在。

admin 更改状态以发布 2023年5月25日
0
0 Comments

我通常添加到.gitignore的内容包括:

bin
gen

bingen在编码过程中不断变化,因此没有必要将它们包含到Git仓库中。此外,有时我会添加.classpath.project这两个Eclipse特定的文件,因为也许我想基于这些相同的源代码在另一个操作系统或IDE中创建一个新的Android项目。

至于错误,我会清理项目并/或尝试运行Fix Project Properties实用程序 (右键单击项目 -> Android工具 -> Fix Project Properties)。

0
0 Comments

有些文件类型应该被忽略

# 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/

来自github上的Gitignore

0