web-dev-qa-db-ja.com

Androidアプリの典型的な.gitignoreファイル

Androidプロジェクトをgit(beanstalk)バージョン管理下にコマンドライン(mac terminal)で配置するだけです。次のステップは、除外を設定することです。

すでにこの道を進んでいるあなたへ:

Androidプロジェクトの典型的な.gitignoreファイルはどのように見えますか?

Eclipseでセットアップされたプロジェクト

113
eric

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
177
jamapag

他の人が提案したことに加えて、あなたがそれを使用している場合に備えて、proguardフォルダを追加したいと思います。フォルダ全体を無視するか、dump.txtseeds.txtおよびusage.txt。基本的に、mapping.txtバージョン化されているため、難読化されたスタックトレースをユーザーからデバッグできます。詳細 こちら

16
Felix

これは私の標準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

5
keyboardsurfer

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
Kevin Jalbert

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
2

単純に github を生成できます.gitignore for Androidプロジェクトリポジトリ

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
0
ahmednabil88

私のプロジェクトルートには、ファイル.gitignoreがあります。を含む:

/bin/
/gen/
0
Code Poet

さらに、IDEAのIntelliJを使用し、Artifactsをビルドする場合(そして、そうする必要がある場合)、追加することもできます。

out/

(これがデフォルトでアーティファクトが構築される場所です)。

また、IntelliJプロジェクトのものを共有したくない場合は無視します

.idea/
0