1- target /
2- .idea /
1+ # Ignore Gradle project-specific cache directory
2+ .gradle
3+ .kotlin
4+
5+ # Ignore Gradle build output directory
6+ ** /build
7+
8+ # ## Windows template
9+ # Windows thumbnail cache files
10+ Thumbs.db
11+ Thumbs.db:encryptable
12+ ehthumbs.db
13+ ehthumbs_vista.db
14+
15+ # Dump file
16+ * .stackdump
17+
18+ # Folder config file
19+ [Dd ]esktop.ini
20+
21+ # Recycle Bin used on file shares
22+ $RECYCLE.BIN /
23+
24+ # Windows Installer files
25+ * .cab
26+ * .msi
27+ * .msix
28+ * .msm
29+ * .msp
30+
31+ # Windows shortcuts
32+ * .lnk
33+
34+ # ## macOS template
35+ # General
36+ .DS_Store
37+ .AppleDouble
38+ .LSOverride
39+
40+ # Icon must end with two \r
41+ Icon
42+
43+ # Thumbnails
44+ ._ *
45+
46+ # Files that might appear in the root of a volume
47+ .DocumentRevisions-V100
48+ .fseventsd
49+ .Spotlight-V100
50+ .TemporaryItems
51+ .Trashes
52+ .VolumeIcon.icns
53+ .com.apple.timemachine.donotpresent
54+
55+ # Directories potentially created on remote AFP share
56+ .AppleDB
57+ .AppleDesktop
58+ Network Trash Folder
59+ Temporary Items
60+ .apdisk
61+
62+ # ## Linux template
63+ * ~
64+
65+ # temporary files which can be created if a process still has a handle open of a deleted file
66+ .fuse_hidden *
67+
68+ # KDE directory preferences
69+ .directory
70+
71+ # Linux trash folder which might appear on any partition or disk
72+ .Trash- *
73+
74+ # .nfs files are created when an open file is removed but is still being accessed
75+ .nfs *
76+
77+ # ## JetBrains template
78+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
79+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
80+
81+ * .iml
82+ * .ipr
83+ * .iws
84+ /.idea /*
85+
86+ # Exclude non-user-specific stuff
87+ ! .idea /.name
88+ ! .idea /codeInsightSettings.xml
89+ ! .idea /codeStyles /
90+ ! .idea /copyright /
91+ ! .idea /dataSources.xml
92+ ! .idea /detekt.xml
93+ ! .idea /encodings.xml
94+ ! .idea /externalDependencies.xml
95+ ! .idea /file.template.settings.xml
96+ ! .idea /fileTemplates /
97+ ! .idea /icon.svg
98+ ! .idea /inspectionProfiles /
99+ ! .idea /runConfigurations /
100+ ! .idea /scopes /
101+ ! .idea /vcs.xml
102+
103+ # ## Kotlin template
104+ # Compiled class file
105+ * .class
106+
107+ # Log file
108+ * .log
109+
110+ # Package Files #
111+ * .jar
112+ * .war
113+ * .nar
114+ * .ear
115+ * .zip
116+ * .tar.gz
117+ * .rar
118+
119+ # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
120+ hs_err_pid *
121+
122+ # ## Gradle template
123+ .gradle
124+
125+ # Note that you may need to exclude by hand other folders
126+ # named build if necessary (e.g., in src/)
127+ ** /build /
128+
129+ # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
130+ ! gradle /wrapper /gradle-wrapper.jar
131+
132+ # Cache of project
133+ .gradletasknamecache
134+ .gitignore-android
135+ # ## Android-specific stuff
136+ # Built application files
137+ * .apk
138+ * .ap_
139+ * .aab
140+ * .apks
141+
142+ # Files for the Dalvik VM
143+ * .dex
144+
145+ # Generated files
146+ bin /
147+ gen /
148+
149+ # Local configuration file (sdk path, etc)
150+ local.properties
151+
152+ # Google/Firebase secrets
153+ google-services.json
0 commit comments