.gitignore 628 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. #built application files
  2. #*.apk
  3. *.ap_
  4. lint.xml
  5. #files for the dex VM
  6. *.dex
  7. #Java class files
  8. *.class
  9. #generated files
  10. bin/
  11. gen/
  12. #Ant
  13. build.xml
  14. local.properties
  15. #maven
  16. target/
  17. pom.xml.*
  18. release.properties
  19. #Local configuration file(sdk path,etc)
  20. local.properties
  21. #Windows thumbnail db
  22. Thumbs.db
  23. #OSX files
  24. .DS_Store
  25. #Eclipse project files
  26. .classpath
  27. .project
  28. .settings
  29. # Android Studio
  30. .idea
  31. #.idea/workspace.xml -remove # and delete .idea if it better suit your needs
  32. .gradle
  33. build/
  34. # proguard folder generated by Eclipse
  35. proguard/
  36. #Log files
  37. *.log
  38. # IntelliJ
  39. *.iml
  40. *.ipr
  41. *.iws
  42. .idea/
  43. out/
  44. # other
  45. .svn
  46. readme.txt