.gitignore 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. # ---> Android
  2. # Built application files
  3. *.apk
  4. *.ap_
  5. # Files for the Dalvik VM
  6. *.dex
  7. # Java class files
  8. *.class
  9. # Generated files
  10. bin/
  11. gen/
  12. # Gradle files
  13. .gradle/
  14. build/
  15. # Local configuration file (sdk path, etc)
  16. local.properties
  17. # Proguard folder generated by Eclipse
  18. proguard/
  19. # Log Files
  20. *.log
  21. # Android Studio Navigation editor temp files
  22. .navigation/
  23. # Android Studio captures folder
  24. captures/
  25. # ---> Gradle
  26. .gradle
  27. build/
  28. # Ignore Gradle GUI config
  29. gradle-app.setting
  30. # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
  31. !gradle-wrapper.jar
  32. # ---> Java
  33. *.class
  34. # Mobile Tools for Java (J2ME)
  35. .mtj.tmp/
  36. # Package Files #
  37. *.jar
  38. *.war
  39. *.ear
  40. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  41. hs_err_pid*
  42. # ---> JetBrains
  43. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
  44. *.iml
  45. ## Directory-based project format:
  46. .idea/
  47. # if you remove the above rule, at least ignore the following:
  48. # User-specific stuff:
  49. # .idea/workspace.xml
  50. # .idea/tasks.xml
  51. # .idea/dictionaries
  52. # Sensitive or high-churn files:
  53. # .idea/dataSources.ids
  54. # .idea/dataSources.xml
  55. # .idea/sqlDataSources.xml
  56. # .idea/dynamic.xml
  57. # .idea/uiDesigner.xml
  58. # Gradle:
  59. # .idea/gradle.xml
  60. # .idea/libraries
  61. # Mongo Explorer plugin:
  62. # .idea/mongoSettings.xml
  63. ## File-based project format:
  64. *.ipr
  65. *.iws
  66. ## Plugin-specific files:
  67. # IntelliJ
  68. /out/
  69. # mpeltonen/sbt-idea plugin
  70. .idea_modules/
  71. # JIRA plugin
  72. atlassian-ide-plugin.xml
  73. # Crashlytics plugin (for Android Studio and IntelliJ)
  74. com_crashlytics_export_strings.xml
  75. crashlytics.properties
  76. crashlytics-build.properties