1# NPM renames .gitignore to .npmignore
2# In order to prevent that, we remove the initial "."
3# And the CLI then renames it
4
5# Using Android gitignore template: https://github.com/github/gitignore/blob/master/Android.gitignore
6
7# Built application files
8*.apk
9*.ap_
10*.aab
11
12# Files for the ART/Dalvik VM
13*.dex
14
15# Java class files
16*.class
17
18# Generated files
19bin/
20gen/
21out/
22release/
23
24# Gradle files
25.gradle/
26build/
27
28# Local configuration file (sdk path, etc)
29local.properties
30
31# Proguard folder generated by Eclipse
32proguard/
33
34# Log Files
35*.log
36
37# Android Studio Navigation editor temp files
38.navigation/
39
40# Android Studio captures folder
41captures/
42
43# IntelliJ
44*.iml
45.idea/workspace.xml
46.idea/tasks.xml
47.idea/gradle.xml
48.idea/assetWizardSettings.xml
49.idea/dictionaries
50.idea/libraries
51# Android Studio 3 in .gitignore file.
52.idea/caches
53.idea/modules.xml
54# Comment next line if keeping position of elements in Navigation Editor is relevant for you
55.idea/navEditor.xml
56
57# Keystore files
58# Uncomment the following lines if you do not want to check your keystore files in.
59#*.jks
60#*.keystore
61
62# External native build folder generated in Android Studio 2.2 and later
63.externalNativeBuild
64
65# Freeline
66freeline.py
67freeline/
68freeline_project_description.json
69
70# fastlane
71fastlane/report.xml
72fastlane/Preview.html
73fastlane/screenshots
74fastlane/test_output
75fastlane/readme.md
76
77# Version control
78vcs.xml
79
80# lint
81lint/intermediates/
82lint/generated/
83lint/outputs/
84lint/tmp/
85# lint/reports/
86
87# Cordova plugins for Capacitor
88capacitor-cordova-android-plugins
89
90# Copied web assets
91app/src/main/assets/public
92