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