.gitignore 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. # Created by https://www.toptal.com/developers/gitignore/api/android
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=android
  3. ### Android ###
  4. # Built application files
  5. *.apk
  6. *.aar
  7. *.ap_
  8. *.aab
  9. # Files for the ART/Dalvik VM
  10. *.dex
  11. # Java class files
  12. *.class
  13. # Generated files
  14. bin/
  15. gen/
  16. out/
  17. # Uncomment the following line in case you need and you don't have the release build type files in your app
  18. # release/
  19. # Gradle files
  20. .gradle/
  21. build/
  22. # Local configuration file (sdk path, etc)
  23. local.properties
  24. # Proguard folder generated by Eclipse
  25. proguard/
  26. # Log Files
  27. *.log
  28. # Android Studio Navigation editor temp files
  29. .navigation/
  30. # Android Studio captures folder
  31. captures/
  32. # IntelliJ
  33. *.iml
  34. .idea/workspace.xml
  35. .idea/tasks.xml
  36. .idea/gradle.xml
  37. .idea/assetWizardSettings.xml
  38. .idea/dictionaries
  39. .idea/libraries
  40. .idea/jarRepositories.xml
  41. # Android Studio 3 in .gitignore file.
  42. .idea/caches
  43. .idea/modules.xml
  44. # Comment next line if keeping position of elements in Navigation Editor is relevant for you
  45. .idea/navEditor.xml
  46. # Keystore files
  47. # Uncomment the following lines if you do not want to check your keystore files in.
  48. #*.jks
  49. #*.keystore
  50. # External native build folder generated in Android Studio 2.2 and later
  51. .externalNativeBuild
  52. .cxx/
  53. # Google Services (e.g. APIs or Firebase)
  54. # google-services.json
  55. # Freeline
  56. freeline.py
  57. freeline/
  58. freeline_project_description.json
  59. # fastlane
  60. fastlane/report.xml
  61. fastlane/Preview.html
  62. fastlane/screenshots
  63. fastlane/test_output
  64. fastlane/readme.md
  65. # Version control
  66. vcs.xml
  67. # lint
  68. lint/intermediates/
  69. lint/generated/
  70. lint/outputs/
  71. lint/tmp/
  72. # lint/reports/
  73. # Android Profiling
  74. *.hprof
  75. ### Android Patch ###
  76. gen-external-apklibs
  77. output.json
  78. # Replacement of .externalNativeBuild directories introduced
  79. # with Android Studio 3.5.
  80. # End of https://www.toptal.com/developers/gitignore/api/android