Newer
Older
DevAndroid / .gitignore
  1. ### Android ###
  2. # Built application files
  3. *.apk
  4. *.ap_
  5.  
  6. # Files for the ART/Dalvik VM
  7. *.dex
  8.  
  9. # Java class files
  10. *.class
  11.  
  12. # Generated files
  13. bin/
  14. gen/
  15. out/
  16.  
  17. # Gradle files
  18. .gradle/
  19. build/
  20.  
  21. # Local configuration file (sdk path, etc)
  22. local.properties
  23.  
  24. # Proguard folder generated by Eclipse
  25. proguard/
  26.  
  27. # Log Files
  28. *.log
  29.  
  30. # Android Studio Navigation editor temp files
  31. .navigation/
  32.  
  33. # Android Studio captures folder
  34. captures/
  35.  
  36. # Intellij
  37. *.iml
  38. .idea/workspace.xml
  39. .idea/tasks.xml
  40. .idea/gradle.xml
  41. .idea/dictionaries
  42. .idea/libraries
  43. .idea/runConfigurations.xml
  44.  
  45. # Keystore files
  46. *.jks
  47.  
  48. # External native build folder generated in Android Studio 2.2 and later
  49. .externalNativeBuild
  50.  
  51. # Google Services (e.g. APIs or Firebase)
  52. google-services.json
  53.  
  54. # Freeline
  55. freeline.py
  56. freeline/
  57. freeline_project_description.json
  58.  
  59. ### Android Patch ###
  60. gen-external-apklibs
  61.  
  62. ### AndroidStudio ###
  63. # Covers files to be ignored for android development using Android Studio.
  64.  
  65. # Built application files
  66.  
  67. # Files for the ART/Dalvik VM
  68.  
  69. # Java class files
  70.  
  71. # Generated files
  72.  
  73. # Gradle files
  74. .gradle
  75.  
  76. # Signing files
  77. .signing/
  78.  
  79. # Local configuration file (sdk path, etc)
  80.  
  81. # Proguard folder generated by Eclipse
  82.  
  83. # Log Files
  84.  
  85. # Android Studio
  86. /*/build/
  87. /*/local.properties
  88. /*/out
  89. /*/*/build
  90. /*/*/production
  91. *.ipr
  92. *~
  93. *.swp
  94.  
  95. # Android Patch
  96.  
  97. # External native build folder generated in Android Studio 2.2 and later
  98.  
  99. # NDK
  100. obj/
  101.  
  102. # IntelliJ IDEA
  103. *.iws
  104. /out/
  105.  
  106. # User-specific configurations
  107. .idea/libraries/
  108. .idea/.name
  109. .idea/compiler.xml
  110. .idea/copyright/profiles_settings.xml
  111. .idea/encodings.xml
  112. .idea/misc.xml
  113. .idea/modules.xml
  114. .idea/scopes/scope_settings.xml
  115. .idea/vcs.xml
  116. .idea/jsLibraryMappings.xml
  117. .idea/datasources.xml
  118. .idea/dataSources.ids
  119. .idea/sqlDataSources.xml
  120. .idea/dynamic.xml
  121. .idea/uiDesigner.xml
  122. .idea/caches/
  123.  
  124. # Keystore files
  125.  
  126. # OS-specific files
  127. .DS_Store
  128. .DS_Store?
  129. ._*
  130. .Spotlight-V100
  131. .Trashes
  132. ehthumbs.db
  133. Thumbs.db
  134.  
  135. # Legacy Eclipse project files
  136. .classpath
  137. .project
  138.  
  139. # Mobile Tools for Java (J2ME)
  140. .mtj.tmp/
  141.  
  142. # Package Files #
  143. *.jar
  144. *.war
  145. *.ear
  146.  
  147. # virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
  148. hs_err_pid*
  149.  
  150. ## Plugin-specific files:
  151.  
  152. # mpeltonen/sbt-idea plugin
  153. .idea_modules/
  154.  
  155. # JIRA plugin
  156. atlassian-ide-plugin.xml
  157.  
  158. # Mongo Explorer plugin
  159. .idea/mongoSettings.xml
  160.  
  161. # Crashlytics plugin (for Android Studio and IntelliJ)
  162. com_crashlytics_export_strings.xml
  163. crashlytics.properties
  164. crashlytics-build.properties
  165. fabric.properties
  166.  
  167. ### AndroidStudio Patch ###
  168. # Google Services plugin
  169.  
  170. !/gradle/wrapper/gradle-wrapper.jar
  171.  
  172. ### macOS ###
  173. *.DS_Store
  174. .AppleDouble
  175. .LSOverride
  176.  
  177. # Icon must end with two \r
  178. Icon
  179.  
  180. # Thumbnails
  181.  
  182. # Files that might appear in the root of a volume
  183. .DocumentRevisions-V100
  184. .fseventsd
  185. .TemporaryItems
  186. .VolumeIcon.icns
  187. .com.apple.timemachine.donotpresent
  188.  
  189. # Directories potentially created on remote AFP share
  190. .AppleDB
  191. .AppleDesktop
  192. Network Trash Folder
  193. Temporary Items
  194. .apdisk