过去我使用Eclipse IDE和Android SDK Tools,现在我正在迁移到Android Studio。 Android Studio会生成大量文件,例如build.gradle
。我应该将哪些文件/文件夹添加到.gitignore
文件中?
编辑:这里有很多问题给出了不同的答案。所以我尝试使用各种来源将它们组合在一起。
# 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
*.iws
.idea/workspace.xml
.idea/tasks.xml