-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
96 lines (80 loc) · 2.25 KB
/
Copy path.gitignore
File metadata and controls
96 lines (80 loc) · 2.25 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# environment variables
.env
# python cache
__pycache__/
*.pyc
# data —— 仅忽略仓库根的 Python 数据库目录。
# ⚠️ 必须用前导斜杠 /data/ 锚定到根:不带斜杠的 `data/` 会匹配**任意层级**的
# data 目录,曾误伤 android/app/src/main/java/com/flatradar/app/data/(整个 DI
# 源码包),导致 CI 缺文件编译失败。
/data/
# logs (runtime) —— 同理锚定到根,避免误伤嵌套的 logs/ 源码目录
/logs/
# tool config
.claude/
# mac
.DS_Store
# IDE
.idea/
# build outputs —— 这个**故意**不锚定:要匹配 android/app/build/ 等所有嵌套构建目录
build/
/dist/
*.icns
# Xcode
**/xcuserdata/
**/.build/
*.mobileprovision
*.cer
*.certSigningRequest
*.bak
DerivedData/
# App Store Connect API
**/AuthKey_*.p8
tools/asc/config.json
tools/asc/*.cache.json
tools/asc/metadata-drafts/
# Fastlane
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots/**/*.png
fastlane/screenshots/**/*.jpg
fastlane/test_output/
fastlane/AuthKey_*.p8
# ──────────────────────────────────────────────────────────────
# Android
# ──────────────────────────────────────────────────────────────
# local.properties 含 sdk.dir + 任何 ${MY_KEY}=xxx 配置(比如 Google
# Maps API Key)。**绝对禁止上传**——本仓库当前的 android/local.properties
# 就含一个生效的 MAPS_API_KEY。每个开发者本地各自维护。
**/local.properties
.gradle/
**/.gradle/
.kotlin/
**/.kotlin/
captures/
.cxx/
.externalNativeBuild/
# Android 通用忽略(.idea/ 已在全局忽略,无需重复)
*.iml
*.apk
*.aab
*.ap_
*.dex
# 密钥 / 证书(**绝对**不上传)
*.p12
# Keystore / 签名材料
*.jks
*.keystore
keystore.properties
release.properties
signing.properties
# Firebase 配置,含 project_number / api_key——绝对禁止提交原始文件
google-services.json
# Firebase / GCP service account 私钥
*-service-account*.json
service-account*.json
# 加密版另当别论
google-services.json.enc
# Android Profiler 输出
*.hprof
*.trace