.gitignore 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. # Created by https://www.toptal.com/developers/gitignore/api/android,androidstudio
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=android,androidstudio
  3. ### Android ###
  4. # Built application files
  5. *.apk
  6. *.aar
  7. *.ap_
  8. *.aab
  9. # Files for the ART/Dalvik VM
  10. *.dex
  11. # Java class files
  12. *.class
  13. # Generated files
  14. bin/
  15. gen/
  16. out/
  17. # Uncomment the following line in case you need and you don't have the release build type files in your app
  18. # release/
  19. # Gradle files
  20. .gradle/
  21. build/
  22. # Local configuration file (sdk path, etc)
  23. local.properties
  24. # Proguard folder generated by Eclipse
  25. proguard/
  26. # Log Files
  27. *.log
  28. # Android Studio Navigation editor temp files
  29. .navigation/
  30. # Android Studio captures folder
  31. captures/
  32. # IntelliJ
  33. *.iml
  34. .idea/workspace.xml
  35. .idea/tasks.xml
  36. .idea/gradle.xml
  37. .idea/assetWizardSettings.xml
  38. .idea/dictionaries
  39. .idea/libraries
  40. .idea/jarRepositories.xml
  41. # Android Studio 3 in .gitignore file.
  42. .idea/caches
  43. .idea/modules.xml
  44. # Comment next line if keeping position of elements in Navigation Editor is relevant for you
  45. .idea/navEditor.xml
  46. # Keystore files
  47. # Uncomment the following lines if you do not want to check your keystore files in.
  48. #*.jks
  49. #*.keystore
  50. # External native build folder generated in Android Studio 2.2 and later
  51. .externalNativeBuild
  52. .cxx/
  53. # Google Services (e.g. APIs or Firebase)
  54. # google-services.json
  55. # Freeline
  56. freeline.py
  57. freeline/
  58. freeline_project_description.json
  59. # fastlane
  60. fastlane/report.xml
  61. fastlane/Preview.html
  62. fastlane/screenshots
  63. fastlane/test_output
  64. fastlane/readme.md
  65. # Version control
  66. vcs.xml
  67. # lint
  68. lint/intermediates/
  69. lint/generated/
  70. lint/outputs/
  71. lint/tmp/
  72. # lint/reports/
  73. # Android Profiling
  74. *.hprof
  75. ### Android Patch ###
  76. gen-external-apklibs
  77. output.json
  78. # Replacement of .externalNativeBuild directories introduced
  79. # with Android Studio 3.5.
  80. ### AndroidStudio ###
  81. # Covers files to be ignored for android development using Android Studio.
  82. # Built application files
  83. # Files for the ART/Dalvik VM
  84. # Java class files
  85. # Generated files
  86. # Gradle files
  87. .gradle
  88. # Signing files
  89. .signing/
  90. # Local configuration file (sdk path, etc)
  91. # Proguard folder generated by Eclipse
  92. # Log Files
  93. # Android Studio
  94. /*/build/
  95. /*/local.properties
  96. /*/out
  97. /*/*/build
  98. /*/*/production
  99. *.ipr
  100. *~
  101. *.swp
  102. # Keystore files
  103. *.jks
  104. *.keystore
  105. # Google Services (e.g. APIs or Firebase)
  106. # google-services.json
  107. # Android Patch
  108. # External native build folder generated in Android Studio 2.2 and later
  109. # NDK
  110. obj/
  111. # IntelliJ IDEA
  112. *.iws
  113. /out/
  114. # User-specific configurations
  115. .idea/caches/
  116. .idea/libraries/
  117. .idea/shelf/
  118. .idea/.name
  119. .idea/compiler.xml
  120. .idea/copyright/profiles_settings.xml
  121. .idea/encodings.xml
  122. .idea/misc.xml
  123. .idea/scopes/scope_settings.xml
  124. .idea/vcs.xml
  125. .idea/jsLibraryMappings.xml
  126. .idea/datasources.xml
  127. .idea/dataSources.ids
  128. .idea/sqlDataSources.xml
  129. .idea/dynamic.xml
  130. .idea/uiDesigner.xml
  131. # OS-specific files
  132. .DS_Store
  133. .DS_Store?
  134. ._*
  135. .Spotlight-V100
  136. .Trashes
  137. ehthumbs.db
  138. Thumbs.db
  139. # Legacy Eclipse project files
  140. .classpath
  141. .project
  142. .cproject
  143. .settings/
  144. # Mobile Tools for Java (J2ME)
  145. .mtj.tmp/
  146. # Package Files #
  147. *.war
  148. *.ear
  149. # virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
  150. hs_err_pid*
  151. ## Plugin-specific files:
  152. # mpeltonen/sbt-idea plugin
  153. .idea_modules/
  154. # JIRA plugin
  155. atlassian-ide-plugin.xml
  156. # Mongo Explorer plugin
  157. .idea/mongoSettings.xml
  158. # Crashlytics plugin (for Android Studio and IntelliJ)
  159. com_crashlytics_export_strings.xml
  160. crashlytics.properties
  161. crashlytics-build.properties
  162. fabric.properties
  163. ### AndroidStudio Patch ###
  164. !/gradle/wrapper/gradle-wrapper.jar
  165. # End of https://www.toptal.com/developers/gitignore/api/android,androidstudio