.gitignore 759 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. ## Gradle
  2. .gradle
  3. gradle-app.setting
  4. build/
  5. ## Java:
  6. *.class
  7. *.war
  8. *.ear
  9. hs_err_pid*
  10. .attach_pid*
  11. ## Android:
  12. android/libs/armeabi/
  13. android/libs/armeabi-v7a/
  14. android/libs/x86/
  15. android/gen/
  16. local.properties
  17. com_crashlytics_export_strings.xml
  18. ## GWT:
  19. war/
  20. html/war/gwt_bree/
  21. html/gwt-unitCache/
  22. .apt_generated/
  23. html/war/WEB-INF/deploy/
  24. html/war/WEB-INF/classes/
  25. .gwt/
  26. gwt-unitCache/
  27. www-test/
  28. .gwt-tmp/
  29. *.symbolMap
  30. ## IntelliJ, Android Studio:
  31. .idea/
  32. *.ipr
  33. *.iws
  34. *.iml
  35. out/
  36. ## Eclipse
  37. .classpath
  38. .project
  39. .metadata
  40. **/bin/
  41. tmp/
  42. *.tmp
  43. *.bak
  44. *.swp
  45. *~.nib
  46. .settings/
  47. .loadpath
  48. .externalToolBuilders/
  49. *.launch
  50. ## NetBeans
  51. **/nbproject/private/
  52. nbbuild/
  53. dist/
  54. nbdist/
  55. nbactions.xml
  56. nb-configuration.xml
  57. ## OS Specific
  58. .DS_Store
  59. ## Miscellaneous
  60. *~
  61. *.*#
  62. *#*#