Jahir Fiquitiva | 1b9f1d2 | 2015-08-07 14:50:36 -0500 | [diff] [blame] | 1 | # Created by https://www.gitignore.io |
| 2 | |
| 3 | ### Android ### |
| 4 | # Built application files |
| 5 | *.apk |
| 6 | *.ap_ |
| 7 | |
| 8 | # Files for the Dalvik VM |
| 9 | *.dex |
| 10 | |
| 11 | # Java class files |
| 12 | *.class |
| 13 | |
| 14 | # Generated files |
| 15 | bin/ |
| 16 | gen/ |
| 17 | |
| 18 | # Gradle files |
| 19 | .gradle/ |
| 20 | build/ |
| 21 | /*/build/ |
| 22 | |
| 23 | # Local configuration file (sdk path, etc) |
| 24 | local.properties |
| 25 | |
| 26 | # Proguard folder generated by Eclipse |
| 27 | proguard/ |
| 28 | |
| 29 | # Log Files |
| 30 | *.log |
| 31 | |
| 32 | ### Android Patch ### |
| 33 | gen-external-apklibs |
| 34 | |
| 35 | |
| 36 | ### Gradle ### |
| 37 | .gradle |
| 38 | build/ |
| 39 | |
| 40 | # Ignore Gradle GUI config |
| 41 | gradle-app.setting |
| 42 | |
| 43 | # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) |
| 44 | !gradle-wrapper.jar |
| 45 | |
| 46 | |
| 47 | ### OSX ### |
| 48 | .DS_Store |
| 49 | .AppleDouble |
| 50 | .LSOverride |
| 51 | |
| 52 | # Icon must end with two \r |
| 53 | Icon |
| 54 | |
| 55 | |
| 56 | # Thumbnails |
| 57 | ._* |
| 58 | |
| 59 | # Files that might appear in the root of a volume |
| 60 | .DocumentRevisions-V100 |
| 61 | .fseventsd |
| 62 | .Spotlight-V100 |
| 63 | .TemporaryItems |
| 64 | .Trashes |
| 65 | .VolumeIcon.icns |
| 66 | |
| 67 | # Directories potentially created on remote AFP share |
| 68 | .AppleDB |
| 69 | .AppleDesktop |
| 70 | Network Trash Folder |
| 71 | Temporary Items |
| 72 | .apdisk |
| 73 | |
| 74 | |
| 75 | ### Java ### |
| 76 | *.class |
| 77 | |
| 78 | # Mobile Tools for Java (J2ME) |
| 79 | .mtj.tmp/ |
| 80 | |
| 81 | # Package Files # |
| 82 | *.war |
| 83 | *.ear |
| 84 | |
| 85 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml |
| 86 | hs_err_pid* |
| 87 | |
| 88 | |
| 89 | ### Intellij ### |
| 90 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm |
| 91 | |
| 92 | *.iml |
| 93 | |
| 94 | ## Directory-based project format: |
| 95 | .idea/ |
| 96 | # if you remove the above rule, at least ignore the following: |
| 97 | |
| 98 | # User-specific stuff: |
| 99 | # .idea/workspace.xml |
| 100 | # .idea/tasks.xml |
| 101 | # .idea/dictionaries |
| 102 | |
| 103 | # Sensitive or high-churn files: |
| 104 | # .idea/dataSources.ids |
| 105 | # .idea/dataSources.xml |
| 106 | # .idea/sqlDataSources.xml |
| 107 | # .idea/dynamic.xml |
| 108 | # .idea/uiDesigner.xml |
| 109 | |
| 110 | # Gradle: |
| 111 | # .idea/gradle.xml |
| 112 | # .idea/libraries |
| 113 | |
| 114 | # Mongo Explorer plugin: |
| 115 | # .idea/mongoSettings.xml |
| 116 | |
| 117 | ## File-based project format: |
| 118 | *.ipr |
| 119 | *.iws |
| 120 | |
| 121 | ## Plugin-specific files: |
| 122 | |
| 123 | # IntelliJ |
| 124 | /out/ |
| 125 | |
| 126 | # mpeltonen/sbt-idea plugin |
| 127 | .idea_modules/ |
| 128 | |
| 129 | # JIRA plugin |
| 130 | atlassian-ide-plugin.xml |
| 131 | |
| 132 | # Crashlytics plugin (for Android Studio and IntelliJ) |
| 133 | com_crashlytics_export_strings.xml |
| 134 | crashlytics.properties |
| 135 | crashlytics-build.properties |