diff options
author | bunnei <bunneidev@gmail.com> | 2022-12-18 08:25:46 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2023-06-03 09:05:26 +0200 |
commit | bb2cbbfba3ba255c11953f2bcca912046519cfb1 (patch) | |
tree | b72691480e35039d67c0bd703596f1ae214bdaa7 /src/android/.gitignore | |
parent | cmake: Integrate bundled FFmpeg for Android. (diff) | |
download | yuzu-bb2cbbfba3ba255c11953f2bcca912046519cfb1.tar yuzu-bb2cbbfba3ba255c11953f2bcca912046519cfb1.tar.gz yuzu-bb2cbbfba3ba255c11953f2bcca912046519cfb1.tar.bz2 yuzu-bb2cbbfba3ba255c11953f2bcca912046519cfb1.tar.lz yuzu-bb2cbbfba3ba255c11953f2bcca912046519cfb1.tar.xz yuzu-bb2cbbfba3ba255c11953f2bcca912046519cfb1.tar.zst yuzu-bb2cbbfba3ba255c11953f2bcca912046519cfb1.zip |
Diffstat (limited to '')
-rw-r--r-- | src/android/.gitignore | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/src/android/.gitignore b/src/android/.gitignore new file mode 100644 index 000000000..40b6c5cd0 --- /dev/null +++ b/src/android/.gitignore @@ -0,0 +1,62 @@ +# Built application files +*.apk +*.ap_ + +# Files for the ART/Dalvik VM +*.dex + +# Java class files +*.class + +# Generated files +bin/ +gen/ +out/ + +# Gradle files +.gradle/ +build/ + +# Local configuration file (sdk path, etc) +local.properties + +# Proguard folder generated by Eclipse +proguard/ + +# Log Files +*.log + +# Android Studio Navigation editor temp files +.navigation/ + +# Android Studio captures folder +captures/ + +# IntelliJ +*.iml +.idea/ + +# Keystore files +# Uncomment the following line if you do not want to check your keystore files in. +#*.jks + +# External native build folder generated in Android Studio 2.2 and later +.externalNativeBuild + +# CXX compile cache +app/.cxx + +# Google Services (e.g. APIs or Firebase) +google-services.json + +# Freeline +freeline.py +freeline/ +freeline_project_description.json + +# fastlane +fastlane/report.xml +fastlane/Preview.html +fastlane/screenshots +fastlane/test_output +fastlane/readme.md |