.gitignore 826 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. # Ignore data and key store files
  2. *.dat
  3. *.jks
  4. # Ignore output JSON file
  5. app/release/output.json
  6. # Ignore IDE and build system directories
  7. .idea/
  8. .gradle/
  9. *.iml
  10. # Ignore local properties and DS_Store files
  11. /local.properties
  12. .DS_Store
  13. # Ignore build directories and captures
  14. /build
  15. /captures
  16. app/build
  17. build
  18. local.properties
  19. # Ignore APK and AAR files
  20. *.apk
  21. # *.aar
  22. # Ignore signing properties
  23. signing.properties
  24. # Ignore shared object files
  25. *.so
  26. # Ignore Google services JSON
  27. app/google-services.json
  28. # Additional common Android/Java ignores
  29. *.log
  30. *.tmp
  31. *.bak
  32. *.swp
  33. *.orig
  34. *.class
  35. *.jar
  36. *.war
  37. *.ear
  38. # Ignore executable files
  39. *.exe
  40. *.dll
  41. *.obj
  42. *.o
  43. *.pyc
  44. *.pyo
  45. # Ignore files from other IDEs
  46. .vscode/
  47. .classpath
  48. .project
  49. .settings/
  50. *.sublime-workspace
  51. *.sublime-project
  52. # Ignore OS-specific files
  53. Thumbs.db
  54. .DS_Store