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