diff options
| author | Gaspard Coulet <gaspard.coulet@mines-ales.org> | 2021-04-28 23:08:21 +0200 |
|---|---|---|
| committer | Gaspard Coulet <gaspard.coulet@mines-ales.org> | 2021-04-28 23:08:21 +0200 |
| commit | 20f3a92f1c5ddecb565634237e33b321e846ad5d (patch) | |
| tree | 1de4cea19d6bf2768a212c1e3c030bdb05a39544 /.gitignore | |
Initial commit
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2155afd --- /dev/null +++ b/.gitignore @@ -0,0 +1,76 @@ +# built application files +*.apk +*.ap_ + +# files for the dex VM +*.dex + +# Java class files +*.class + +# generated files +bin/ +gen/ +obj/ +DJI-SDK-LIB_3.1/build/ +build/ + +#Testing profiles +androidTest/ +test/ +# generated file +lint.xml + +# Local configuration file (sdk/lib path, etc) +local.properties +project.properties + +# Eclipse project files +.classpath +.settings/ + +# Proguard folder generated by Eclipse +proguard/ + +# Intellij project files +*.iml +*.ipr +*.iws +.idea/ + +# Mac files +.DS_Store + +# Gradle generated files +.gradle/ + +# Signing files +.signing/ + +# User-specific configurations +**/.idea/libraries/ +**/.idea/workspace.xml +**/.idea/tasks.xml +**/.idea/.name +**/.idea/compiler.xml +**/.idea/copyright/profiles_settings.xml +**/.idea/encodings.xml +**/.idea/misc.xml +**/.idea/modules.xml +**/.idea/scopes/scope_settings.xml +**/.idea/vcs.xml +*.iml + +# OS-specific files +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db +# Android Manifest +AndroidManifest.xml +AndroidManifest2.xml +# Import summary file +import-summary.txt |
