-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
48 lines (38 loc) · 829 Bytes
/
Copy path.gitignore
File metadata and controls
48 lines (38 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Ignore .idea folder except for certain files
.idea/*
!.idea/codeStyles/
!.idea/inspectionProfiles/
!.idea/vcs.xml
# Ignore specific .idea files
/.idea/caches/
/.idea/libraries/
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
# Ignore build output and gradle files
/build
/.gradle
/local.properties
# Ignore generated files
*.iml
# Ignore Android Studio specific files
/captures
/.cxx/
.externalNativeBuild/
local.properties
# Ignore crashlytics and fabric-related files
**/fabric.properties
**/crashlytics.properties
# Ignore temporary files created by operating systems or editors
.DS_Store # MacOS
*.swp # Linux
Thumbs.db # Windows
# Ignore log files
*.log
# Ignore virtual environment files
.venv/
env/
venv/
# Ignore test coverage files
coverage/