You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
572 B
38 lines
572 B
# 1. 忽略编译生成的文件
|
|
/build/
|
|
app/build/
|
|
captures/
|
|
|
|
# 2. 忽略 Gradle 相关文件
|
|
.gradle/
|
|
gradle/caches/
|
|
gradle/wrapper/gradle-wrapper.jar
|
|
|
|
# 3. 忽略本地配置文件(包含 SDK 路径,非常重要)
|
|
local.properties
|
|
|
|
# 4. 忽略 IDE 文件 (IntelliJ / Android Studio)
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# 5. 忽略系统文件
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# 6. 忽略 C++ 构建缓存
|
|
.externalNativeBuild
|
|
.cxx/
|
|
|
|
# 7. 忽略测试相关文件
|
|
/app/src/androidTest/
|
|
/app/src/test/
|
|
|
|
# 8. 忽略环境变量和日志文件
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
*.log |