-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
82 lines (67 loc) · 887 Bytes
/
.gitignore
File metadata and controls
82 lines (67 loc) · 887 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# 项目级 .gitignore
# Gradle 文件
.gradle/
build/
/*/build/
.externalNativeBuild/
.cxx/
captures/
# 本地配置文件
local.properties
*.properties
!gradle.properties
# IDEA/Android Studio 项目文件
*.iml
*.iws
*.ipr
.idea/
.navigation/
output.json
# Android Studio 捕获文件
captures/
# Keystore 文件
*.jks
*.keystore
signing.properties
# 外部 Native 构建文件夹
.externalNativeBuild
.cxx/
# Google Services (例如Google Maps API)
google-services.json
GoogleService-Info.plist
# 日志文件
*.log
logs/
# OS 特定文件
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
Icon?
ehthumbs.db
Thumbs.db
# 临时文件
*.tmp
*.bak
*.swp
*~.nib
tmp/
# 混淆文件
proguard/
# NDK
obj/
.externalNativeBuild
# 依赖缓存
.gradle/
.gradletasknamecache
# 敏感信息
secrets.xml
api_keys.xml
*.key
# 废弃的 APK 文件
*.ap_
*.apk
*.aab
release/
debug/