Newer
Older
DevelopRx / .gitignore
  1. ### AndroidStudio ###
  2. # Covers files to be ignored for android development using Android Studio.
  3.  
  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. .gradle/
  22. build/
  23.  
  24. # Signing files
  25. .signing/
  26.  
  27. # Local configuration file (sdk path, etc)
  28. local.properties
  29.  
  30. # Proguard folder generated by Eclipse
  31. proguard/
  32.  
  33. # Log Files
  34. *.log
  35.  
  36. # Android Studio
  37. /*/build/
  38. /*/local.properties
  39. /*/out
  40. /*/*/build
  41. /*/*/production
  42. captures/
  43. .navigation/
  44. *.ipr
  45. *~
  46. *.swp
  47.  
  48. # Android Patch
  49. gen-external-apklibs
  50.  
  51. # External native build folder generated in Android Studio 2.2 and later
  52. .externalNativeBuild
  53.  
  54. # NDK
  55. obj/
  56.  
  57. # IntelliJ IDEA
  58. *.iml
  59. *.iws
  60. /out/
  61.  
  62. # User-specific configurations
  63. .idea/libraries/
  64. .idea/workspace.xml
  65. .idea/tasks.xml
  66. .idea/.name
  67. .idea/compiler.xml
  68. .idea/copyright/profiles_settings.xml
  69. .idea/encodings.xml
  70. .idea/misc.xml
  71. .idea/modules.xml
  72. .idea/scopes/scope_settings.xml
  73. .idea/dictionaries
  74. .idea/vcs.xml
  75. .idea/jsLibraryMappings.xml
  76. .idea/datasources.xml
  77. .idea/dataSources.ids
  78. .idea/sqlDataSources.xml
  79. .idea/dynamic.xml
  80. .idea/uiDesigner.xml
  81.  
  82. # OS-specific files
  83. .DS_Store
  84. .DS_Store?
  85. ._*
  86. .Spotlight-V100
  87. .Trashes
  88. ehthumbs.db
  89. Thumbs.db
  90.  
  91. # Legacy Eclipse project files
  92. .classpath
  93. .project
  94.  
  95. # Mobile Tools for Java (J2ME)
  96. .mtj.tmp/
  97.  
  98. # Package Files #
  99. *.war
  100. *.ear
  101.  
  102. # virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
  103. hs_err_pid*
  104.  
  105. ## Plugin-specific files:
  106.  
  107. # mpeltonen/sbt-idea plugin
  108. .idea_modules/
  109.  
  110. # JIRA plugin
  111. atlassian-ide-plugin.xml
  112.  
  113. # Mongo Explorer plugin
  114. .idea/mongoSettings.xml
  115.  
  116. # Crashlytics plugin (for Android Studio and IntelliJ)
  117. com_crashlytics_export_strings.xml
  118. crashlytics.properties
  119. crashlytics-build.properties
  120. fabric.properties
  121.  
  122. ### AndroidStudio Patch ###
  123.  
  124. !/gradle/wrapper/gradle-wrapper.jar