.gitignore 664 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # Google services (Firebase/FCM) config and keys
  2. google-services.json
  3. # Signing keystore
  4. .keystores/
  5. .signing/
  6. # Playground
  7. playground/
  8. # Release
  9. releases/
  10. app/release/
  11. # built application files
  12. *.apk
  13. *.ap_
  14. # Mac files
  15. .DS_Store
  16. # files for the dex VM
  17. *.dex
  18. # Java class files
  19. *.class
  20. # generated files
  21. bin/
  22. gen/
  23. # Ignore gradle files
  24. .gradle/
  25. # Build outputs
  26. build/
  27. app/fdroid/release/
  28. app/fdroid/debug/
  29. app/play/release/
  30. app/play/debug/
  31. # Local configuration file (sdk path, etc)
  32. local.properties
  33. # Proguard folder generated by Eclipse
  34. proguard/
  35. proguard-project.txt
  36. # Eclipse files
  37. .project
  38. .classpath
  39. .settings/
  40. # Android Studio/IDEA
  41. *.iml
  42. .idea