156cecc848
- 删除 .vscode/ 编辑器配置 - 删除 other/ 示例和工具目录 - 增强 .gitignore,防止IDE配置和临时文件被提交 - 添加 CONTRIBUTING.md 贡献指南 - 添加 clean_project.sh 项目清理脚本 - 清理所有 .DS_Store 系统文件
69 lines
838 B
Plaintext
69 lines
838 B
Plaintext
# Gradle files
|
|
.gradle/
|
|
build/
|
|
|
|
# Local configuration file (sdk path, etc)
|
|
local.properties
|
|
|
|
# Log/OS Files
|
|
*.log
|
|
|
|
# Android Studio generated files and folders
|
|
captures/
|
|
.externalNativeBuild/
|
|
.cxx/
|
|
*.apk
|
|
*.aab
|
|
output.json
|
|
|
|
# IntelliJ
|
|
*.iml
|
|
.idea/
|
|
misc.xml
|
|
deploymentTargetDropDown.xml
|
|
render.experimental.xml
|
|
|
|
# Keystore files
|
|
*.jks
|
|
*.keystore
|
|
|
|
# Google Services (e.g. APIs or Firebase)
|
|
google-services.json
|
|
|
|
# Android Profiling
|
|
*.hprof
|
|
|
|
# APK files
|
|
apk/release/*.apk
|
|
|
|
# Local configuration files
|
|
gradle.properties.local
|
|
local.properties
|
|
local-repo/
|
|
|
|
# Temporary files
|
|
cleanup_project.sh
|
|
*.tmp
|
|
*.temp
|
|
|
|
# System files
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.swp
|
|
*~
|
|
|
|
# Editor directories and files
|
|
.vscode/
|
|
.vs/
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
|
|
# Duplicate release directories
|
|
XMBOX-Release/
|
|
|
|
# Tools and utilities (not part of the project)
|
|
other/
|
|
tools/ |