In today's fast-paced world, the demand for convenient and cost-effective entertainment options is higher than ever.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

234 lines
3.5 KiB

1 year ago
  1. # ---> Android
  2. # Built application files
  3. *.apk
  4. *.aar
  5. *.ap_
  6. *.aab
  7. # Files for the ART/Dalvik VM
  8. *.dex
  9. # Java class files
  10. *.class
  11. # Generated files
  12. bin/
  13. gen/
  14. out/
  15. # Uncomment the following line in case you need and you don't have the release build type files in your app
  16. # release/
  17. # Gradle files
  18. .gradle/
  19. build/
  20. # Local configuration file (sdk path, etc)
  21. local.properties
  22. # Proguard folder generated by Eclipse
  23. proguard/
  24. # Log Files
  25. *.log
  26. # Android Studio Navigation editor temp files
  27. .navigation/
  28. # Android Studio captures folder
  29. captures/
  30. # IntelliJ
  31. *.iml
  32. .idea/workspace.xml
  33. .idea/tasks.xml
  34. .idea/gradle.xml
  35. .idea/assetWizardSettings.xml
  36. .idea/dictionaries
  37. .idea/libraries
  38. # Android Studio 3 in .gitignore file.
  39. .idea/caches
  40. .idea/modules.xml
  41. # Comment next line if keeping position of elements in Navigation Editor is relevant for you
  42. .idea/navEditor.xml
  43. # Keystore files
  44. # Uncomment the following lines if you do not want to check your keystore files in.
  45. #*.jks
  46. #*.keystore
  47. # External native build folder generated in Android Studio 2.2 and later
  48. .externalNativeBuild
  49. .cxx/
  50. # Google Services (e.g. APIs or Firebase)
  51. # google-services.json
  52. # Freeline
  53. freeline.py
  54. freeline/
  55. freeline_project_description.json
  56. # fastlane
  57. fastlane/report.xml
  58. fastlane/Preview.html
  59. fastlane/screenshots
  60. fastlane/test_output
  61. fastlane/readme.md
  62. # Version control
  63. vcs.xml
  64. # lint
  65. lint/intermediates/
  66. lint/generated/
  67. lint/outputs/
  68. lint/tmp/
  69. # lint/reports/
  70. # Android Profiling
  71. *.hprof
  72. # ---> GPG
  73. secring.*
  74. # ---> Python
  75. # Byte-compiled / optimized / DLL files
  76. __pycache__/
  77. *.py[cod]
  78. *$py.class
  79. # C extensions
  80. *.so
  81. # Distribution / packaging
  82. .Python
  83. build/
  84. develop-eggs/
  85. dist/
  86. downloads/
  87. eggs/
  88. .eggs/
  89. lib/
  90. lib64/
  91. parts/
  92. sdist/
  93. var/
  94. wheels/
  95. share/python-wheels/
  96. *.egg-info/
  97. .installed.cfg
  98. *.egg
  99. MANIFEST
  100. # PyInstaller
  101. # Usually these files are written by a python script from a template
  102. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  103. *.manifest
  104. *.spec
  105. # Installer logs
  106. pip-log.txt
  107. pip-delete-this-directory.txt
  108. # Unit test / coverage reports
  109. htmlcov/
  110. .tox/
  111. .nox/
  112. .coverage
  113. .coverage.*
  114. .cache
  115. nosetests.xml
  116. coverage.xml
  117. *.cover
  118. *.py,cover
  119. .hypothesis/
  120. .pytest_cache/
  121. cover/
  122. # Translations
  123. *.mo
  124. *.pot
  125. # Django stuff:
  126. *.log
  127. local_settings.py
  128. db.sqlite3
  129. db.sqlite3-journal
  130. # Flask stuff:
  131. instance/
  132. .webassets-cache
  133. # Scrapy stuff:
  134. .scrapy
  135. # Sphinx documentation
  136. docs/_build/
  137. # PyBuilder
  138. .pybuilder/
  139. target/
  140. # Jupyter Notebook
  141. .ipynb_checkpoints
  142. # IPython
  143. profile_default/
  144. ipython_config.py
  145. # pyenv
  146. # For a library or package, you might want to ignore these files since the code is
  147. # intended to run in multiple environments; otherwise, check them in:
  148. # .python-version
  149. # pipenv
  150. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  151. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  152. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  153. # install all needed dependencies.
  154. #Pipfile.lock
  155. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  156. __pypackages__/
  157. # Celery stuff
  158. celerybeat-schedule
  159. celerybeat.pid
  160. # SageMath parsed files
  161. *.sage.py
  162. # Environments
  163. .env
  164. .venv
  165. env/
  166. venv/
  167. ENV/
  168. env.bak/
  169. venv.bak/
  170. # Spyder project settings
  171. .spyderproject
  172. .spyproject
  173. # Rope project settings
  174. .ropeproject
  175. # mkdocs documentation
  176. /site
  177. # mypy
  178. .mypy_cache/
  179. .dmypy.json
  180. dmypy.json
  181. # Pyre type checker
  182. .pyre/
  183. # pytype static type analyzer
  184. .pytype/
  185. # Cython debug symbols
  186. cython_debug/