.gitignore 3.4 KB

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