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