diff options
Diffstat (limited to 'src/android/.gitignore')
| -rw-r--r-- | src/android/.gitignore | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/src/android/.gitignore b/src/android/.gitignore new file mode 100644 index 000000000..121cc8484 --- /dev/null +++ b/src/android/.gitignore | |||
| @@ -0,0 +1,65 @@ | |||
| 1 | # SPDX-FileCopyrightText: 2023 yuzu Emulator Project | ||
| 2 | # SPDX-License-Identifier: GPL-3.0-or-later | ||
| 3 | |||
| 4 | # Built application files | ||
| 5 | *.apk | ||
| 6 | *.ap_ | ||
| 7 | |||
| 8 | # Files for the ART/Dalvik VM | ||
| 9 | *.dex | ||
| 10 | |||
| 11 | # Java class files | ||
| 12 | *.class | ||
| 13 | |||
| 14 | # Generated files | ||
| 15 | bin/ | ||
| 16 | gen/ | ||
| 17 | out/ | ||
| 18 | |||
| 19 | # Gradle files | ||
| 20 | .gradle/ | ||
| 21 | build/ | ||
| 22 | |||
| 23 | # Local configuration file (sdk path, etc) | ||
| 24 | local.properties | ||
| 25 | |||
| 26 | # Proguard folder generated by Eclipse | ||
| 27 | proguard/ | ||
| 28 | |||
| 29 | # Log Files | ||
| 30 | *.log | ||
| 31 | |||
| 32 | # Android Studio Navigation editor temp files | ||
| 33 | .navigation/ | ||
| 34 | |||
| 35 | # Android Studio captures folder | ||
| 36 | captures/ | ||
| 37 | |||
| 38 | # IntelliJ | ||
| 39 | *.iml | ||
| 40 | .idea/ | ||
| 41 | |||
| 42 | # Keystore files | ||
| 43 | # Uncomment the following line if you do not want to check your keystore files in. | ||
| 44 | #*.jks | ||
| 45 | |||
| 46 | # External native build folder generated in Android Studio 2.2 and later | ||
| 47 | .externalNativeBuild | ||
| 48 | |||
| 49 | # CXX compile cache | ||
| 50 | app/.cxx | ||
| 51 | |||
| 52 | # Google Services (e.g. APIs or Firebase) | ||
| 53 | google-services.json | ||
| 54 | |||
| 55 | # Freeline | ||
| 56 | freeline.py | ||
| 57 | freeline/ | ||
| 58 | freeline_project_description.json | ||
| 59 | |||
| 60 | # fastlane | ||
| 61 | fastlane/report.xml | ||
| 62 | fastlane/Preview.html | ||
| 63 | fastlane/screenshots | ||
| 64 | fastlane/test_output | ||
| 65 | fastlane/readme.md | ||