Android应用的典型.gitignore文件

时间:2011-12-12 15:08:03

标签: java android eclipse git gitignore

通过命令行( mac terminal )将Android项目置于git( beanstalk )版本控制之下。下一步是设置排除。

对于那些已经沿着这条路走下去的人:

Android项目的典型.gitignore文件应该是什么样的?

在Eclipse中设置项目

8 个答案:

答案 0 :(得分:176)

您可以混合Android.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.gitignore

*.pydevproject
.project
.metadata
bin/**
tmp/**
tmp/**/*
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# PDT-specific
.buildpath

答案 1 :(得分:16)

除了其他人建议的内容之外,我还想添加proguard文件夹,以防您使用它。您可以忽略整个文件夹,也可以忽略dump.txtseeds.txtusage.txt。基本上,保持mapping.txt版本是个好主意,这样您就可以调试用户的混淆堆栈跟踪。更多详情here

答案 2 :(得分:5)

这是我的标准Android .gitignore.hgignore文件。它通常运作良好。

bin
gen
target
.settings
.classpath
.project
*.keystore
*.swp
*.orig
*.log
*.properties
seed.txt
map.txt

它包含eclipse,vim .swp文件,mavens目标文件夹和包含proguard映射的文件。

更新:我已放置.gitignore for Android development online

答案 3 :(得分:4)

我知道GitHub上的github / gitignore存储库有一个android .gitignore文件。这可能是你想要的,因为它对于android开发应该是非常通用的。

上述文件的实际内容:

# 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

答案 4 :(得分:2)

这是我在Android项目中使用的那个,它支持ADT和Android Studio,所以如果你和团队合作就很好。

# General Folders

# gradle/ comment this when using gradle wrapper.
build/
bin/
gen/
tmp/
# proguard/ comment if not using proguard.
.gradle/
.settings/
.idea/

# General Files

.project
.classpath
.DS_Store
local.properties
*.iml
# gradlew comment when using gradle wrapper
# gradlew.bat comment when using gradle wrapper
Thumbs.db


# files specific to current project
your_apk.apk

答案 5 :(得分:0)

在我的项目根目录中,我有一个文件.gitignore。它包含:

/bin/
/gen/

答案 6 :(得分:0)

另外,如果您使用IDEA的IntelliJ,并构建 Artifacts (您应该),那么您可能想要添加:

out/

(默认情况下,这是Artifacts的构建)。

如果您不想分享您的IntelliJ项目,请忽略

.idea/

答案 7 :(得分:0)

只需github即可为Android项目存储库生成.gitignore

enter image description here

其内容将如下所示

# Built application files
*.apk
*.ap_

# Files for the ART/Dalvik VM
*.dex

# Java class files
*.class

# Generated files
bin/
gen/
out/

# Gradle files
.gradle/
build/

# Local configuration file (sdk path, etc)
local.properties

# Proguard folder generated by Eclipse
proguard/

# Log Files
*.log

# Android Studio Navigation editor temp files
.navigation/

# Android Studio captures folder
captures/

# IntelliJ
*.iml
.idea/workspace.xml
.idea/tasks.xml
.idea/gradle.xml
.idea/assetWizardSettings.xml
.idea/dictionaries
.idea/libraries
.idea/caches

# Keystore files
# Uncomment the following line if you do not want to check your keystore files in.
#*.jks

# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild

# Google Services (e.g. APIs or Firebase)
google-services.json

# Freeline
freeline.py
freeline/
freeline_project_description.json

# fastlane
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
fastlane/readme.md