Newer
Older
CactusClient / .gitignore
n-konishi on 9 May 2018 2 KB 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 Navigation editor temp files
  33. .navigation/
  34.  
  35. # Android Studio captures folder
  36. captures/
  37.  
  38. # Intellij
  39. *.iml
  40. .idea/workspace.xml
  41. .idea/tasks.xml
  42. .idea/gradle.xml
  43. .idea/dictionaries
  44. .idea/libraries
  45.  
  46. # Keystore files
  47. *.jks
  48.  
  49. # External native build folder generated in Android Studio 2.2 and later
  50. .externalNativeBuild
  51.  
  52. # Google Services (e.g. APIs or Firebase)
  53. google-services.json
  54.  
  55. # Freeline
  56. freeline.py
  57. freeline/
  58. freeline_project_description.json
  59.  
  60. ### Android Patch ###
  61. gen-external-apklibs
  62.  
  63. ### AndroidStudio ###
  64. # Covers files to be ignored for android development using Android Studio.
  65.  
  66. # Built application files
  67.  
  68. # Files for the ART/Dalvik VM
  69.  
  70. # Java class files
  71.  
  72. # Generated files
  73.  
  74. # Gradle files
  75. .gradle
  76.  
  77. # Signing files
  78. .signing/
  79.  
  80. # Local configuration file (sdk path, etc)
  81.  
  82. # Proguard folder generated by Eclipse
  83.  
  84. # Log Files
  85.  
  86. # Android Studio
  87. /*/build/
  88. /*/local.properties
  89. /*/out
  90. /*/*/build
  91. /*/*/production
  92. *.ipr
  93. *~
  94. *.swp
  95.  
  96. # Android Patch
  97.  
  98. # External native build folder generated in Android Studio 2.2 and later
  99.  
  100. # NDK
  101. obj/
  102.  
  103. # IntelliJ IDEA
  104. *.iws
  105. /out/
  106.  
  107. # User-specific configurations
  108. .idea/libraries/
  109. .idea/.name
  110. .idea/compiler.xml
  111. .idea/copyright/profiles_settings.xml
  112. .idea/encodings.xml
  113. .idea/misc.xml
  114. .idea/modules.xml
  115. .idea/scopes/scope_settings.xml
  116. .idea/vcs.xml
  117. .idea/jsLibraryMappings.xml
  118. .idea/datasources.xml
  119. .idea/dataSources.ids
  120. .idea/sqlDataSources.xml
  121. .idea/dynamic.xml
  122. .idea/uiDesigner.xml
  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
  195.  
  196. # End of https://www.gitignore.io/api/macos,android,androidstudio