.gitignore 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. # Created by https://www.gitignore.io/api/gradle,android,androidstudio
  2. ### Android ###
  3. # Built application files
  4. *.apk
  5. *.ap_
  6. # Files for the ART/Dalvik VM
  7. *.dex
  8. # Java class files
  9. *.class
  10. # Generated files
  11. bin/
  12. gen/
  13. # Gradle files
  14. .gradle/
  15. build/
  16. # Local configuration file (sdk path, etc)
  17. local.properties
  18. # Proguard folder generated by Eclipse
  19. proguard/
  20. # Log Files
  21. *.log
  22. # Android Studio Navigation editor temp files
  23. .navigation/
  24. # Android Studio captures folder
  25. captures/
  26. # Intellij
  27. *.iml
  28. .idea/workspace.xml
  29. .idea/tasks.xml
  30. .idea/gradle.xml
  31. .idea/dictionaries
  32. .idea/libraries
  33. # External native build folder generated in Android Studio 2.2 and later
  34. .externalNativeBuild
  35. # Freeline
  36. freeline.py
  37. freeline/
  38. freeline_project_description.json
  39. ### Android Patch ###
  40. gen-external-apklibs
  41. ### AndroidStudio ###
  42. # Covers files to be ignored for android development using Android Studio.
  43. # Built application files
  44. # Files for the ART/Dalvik VM
  45. # Java class files
  46. # Generated files
  47. # Gradle files
  48. .gradle
  49. # Signing files
  50. .signing/
  51. # Local configuration file (sdk path, etc)
  52. # Proguard folder generated by Eclipse
  53. # Log Files
  54. # Android Studio
  55. # Android Patch
  56. # External native build folder generated in Android Studio 2.2 and later
  57. # NDK
  58. # IntelliJ IDEA
  59. # User-specific configurations
  60. .idea/libraries/
  61. .idea/.name
  62. .idea/compiler.xml
  63. .idea/copyright/profiles_settings.xml
  64. .idea/encodings.xml
  65. .idea/misc.xml
  66. .idea/modules.xml
  67. .idea/scopes/scope_settings.xml
  68. .idea/vcs.xml
  69. .idea/jsLibraryMappings.xml
  70. .idea/datasources.xml
  71. .idea/dataSources.ids
  72. .idea/sqlDataSources.xml
  73. .idea/dynamic.xml
  74. .idea/uiDesigner.xml
  75. # OS-specific files
  76. .DS_Store
  77. .DS_Store?
  78. ._*
  79. .Spotlight-V100
  80. .Trashes
  81. ehthumbs.db
  82. Thumbs.db
  83. # Legacy Eclipse project files
  84. .classpath
  85. .project
  86. # Mobile Tools for Java (J2ME)
  87. .mtj.tmp/
  88. # Package Files #
  89. *.war
  90. *.ear
  91. # virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
  92. hs_err_pid*
  93. ## Plugin-specific files:
  94. # mpeltonen/sbt-idea plugin
  95. .idea_modules/
  96. # JIRA plugin
  97. atlassian-ide-plugin.xml
  98. # Mongo Explorer plugin
  99. .idea/mongoSettings.xml
  100. # Crashlytics plugin (for Android Studio and IntelliJ)
  101. ### AndroidStudio Patch ###
  102. !/gradle/wrapper/gradle-wrapper.jar
  103. ### Gradle ###
  104. **/build/
  105. # Ignore Gradle GUI config
  106. gradle-app.setting
  107. # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
  108. !gradle-wrapper.jar
  109. # Cache of project
  110. .gradletasknamecache
  111. # # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
  112. # gradle/wrapper/gradle-wrapper.properties
  113. # End of https://www.gitignore.io/api/gradle,android,androidstudio