diff options
| author | erdgeist <erdgeist@erdgeist.org> | 2026-04-24 16:42:18 +0200 |
|---|---|---|
| committer | erdgeist <erdgeist@erdgeist.org> | 2026-04-24 16:42:18 +0200 |
| commit | b4695e613f0bca451485f95572f23d464b56a95e (patch) | |
| tree | f893b2035458b47a9b8bbdb3a78205511d2ce3c5 /.gitignore | |
Initial importmain
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..24bddc8 --- /dev/null +++ b/.gitignore | |||
| @@ -0,0 +1,60 @@ | |||
| 1 | # Built application files | ||
| 2 | app/release | ||
| 3 | *.apk | ||
| 4 | *.ap_ | ||
| 5 | |||
| 6 | # Files for the ART/Dalvik VM | ||
| 7 | *.dex | ||
| 8 | |||
| 9 | # Java class files | ||
| 10 | *.class | ||
| 11 | |||
| 12 | # Generated files | ||
| 13 | bin/ | ||
| 14 | gen/ | ||
| 15 | out/ | ||
| 16 | |||
| 17 | # Gradle files | ||
| 18 | .gradle/ | ||
| 19 | build/ | ||
| 20 | |||
| 21 | # Local configuration file (sdk path, etc) | ||
| 22 | local.properties | ||
| 23 | |||
| 24 | # Proguard folder generated by Eclipse | ||
| 25 | proguard/ | ||
| 26 | |||
| 27 | # Log Files | ||
| 28 | *.log | ||
| 29 | |||
| 30 | # Android Studio Navigation editor temp files | ||
| 31 | .navigation/ | ||
| 32 | |||
| 33 | # Android Studio captures folder | ||
| 34 | captures/ | ||
| 35 | |||
| 36 | # IntelliJ | ||
| 37 | *.iml | ||
| 38 | .idea/* | ||
| 39 | !.idea/runConfigurations | ||
| 40 | |||
| 41 | # Keystore files | ||
| 42 | *.jks | ||
| 43 | |||
| 44 | # External native build folder generated in Android Studio 2.2 and later | ||
| 45 | .externalNativeBuild | ||
| 46 | |||
| 47 | # Google Services (e.g. APIs or Firebase) | ||
| 48 | google-services.json | ||
| 49 | |||
| 50 | # Freeline | ||
| 51 | freeline.py | ||
| 52 | freeline/ | ||
| 53 | freeline_project_description.json | ||
| 54 | |||
| 55 | # fastlane | ||
| 56 | fastlane/report.xml | ||
| 57 | fastlane/Preview.html | ||
| 58 | fastlane/screenshots | ||
| 59 | fastlane/test_output | ||
| 60 | fastlane/readme.md | ||
